Trait nue_io::SeekEnd
[−]
[src]
pub trait SeekEnd { fn seek_end(&mut self, offset: i64) -> Result<u64>; }
A limited form of seeking that only seeks to an offset from the end of the stream.
Required Methods
fn seek_end(&mut self, offset: i64) -> Result<u64>
Seeks to the end of the stream + offset
.
Returns the new position in the stream.
Implementors
impl<'a, T: SeekEnd + ?Sized> SeekEnd for &'a mut T
impl<T: SeekEnd + ?Sized> SeekEnd for Box<T>
impl<T: Seek> SeekEnd for SeekAll<T>
impl<T: SeekEnd> SeekEnd for SeekForwardRead<T>
impl<T: SeekEnd> SeekEnd for SeekForwardWrite<T>
impl<T: SeekEnd> SeekEnd for SeekAbsoluteRewind<T>
impl<T: SeekEnd> SeekEnd for BufSeeker<T>
impl<T: SeekAbsolute> SeekEnd for Region<T>