Trait cbor::skip::Skip
[−]
[src]
pub trait Skip {
fn skip(&mut self, n: u64) -> Result<()>;
}Type which supports skipping a number of bytes.
Similar in spirit to std::io::Seek but only allows
uni-directional movement.
Required Methods
Implementors
impl<A: Seek> Skip for A