[][src]Struct bcder::decode::LimitedSource

pub struct LimitedSource<S> { /* fields omitted */ }

A source that can be limited to a certain number of octets.

This type wraps another source and allows access to be limited to a certain number of octets. It will never provide access to more than that number of octets. Any attempt to advance over more octets will fail with a malformed error.

The limit is, however, independent of the underlying source. It can be larger than the number of octets actually available in the source.

The limit can be changed or even removed at any time.

Implementations

impl<S> LimitedSource<S>[src]

pub fn new(source: S) -> Self[src]

Creates a new limited source for the given source.

The return limited source will have no limit just yet.

pub fn unwrap(self) -> S[src]

Unwraps the value and returns the source it was created from.

pub fn limit(&self) -> Option<usize>[src]

Returns the current limit.

Returns None if there is no limit. Otherwise, the number returned is the number of remaining octets before the limit is reached. This does not necessarily mean that that many octets are actually available in the underlying source.

pub fn limit_further(&mut self, limit: Option<usize>) -> Option<usize>[src]

Sets a more strict limit.

The method will panic (!) if you are trying to set a new limit that is larger than the current limit or if you are trying to remove the limit by passing None if there currently is a limit set.

Returns the old limit.

pub fn set_limit(&mut self, limit: Option<usize>)[src]

Unconditionally sets a new limit.

If you pass None, the limit will be removed.

impl<S: Source> LimitedSource<S>[src]

pub fn skip_all(&mut self) -> Result<(), S::Err>[src]

Skip over all remaining octets until the current limit is reached.

If there currently is no limit, the method will panic. Otherwise it will simply advance to the end of the limit which may be something the underlying source doesn’t like and thus produce an error.

pub fn take_all(&mut self) -> Result<Bytes, S::Err>[src]

Returns a bytes value containing all octets until the current limit.

If there currently is no limit, the method will panic. Otherwise it tries to acquire a bytes value for the octets from the current position to the end of the limit and advance to the end of the limit. This may result in an error by the underlying source.

pub fn exhausted(&mut self) -> Result<(), S::Err>[src]

Checks whether the end of the limit has been reached.

If a limit is currently set, the method will return a malformed error if it is larger than zero, i.e., if there are octets left to advance over before reaching the limit.

If there is no limit set, the method will try to access one single octet and return a malformed error if that is actually possible, i.e., if there are octets left in the underlying source.

Trait Implementations

impl<S: Clone> Clone for LimitedSource<S>[src]

impl<S: Debug> Debug for LimitedSource<S>[src]

impl<S: Source> Source for LimitedSource<S>[src]

type Err = S::Err

The error produced by the source. Read more

Auto Trait Implementations

impl<S> RefUnwindSafe for LimitedSource<S> where
    S: RefUnwindSafe
[src]

impl<S> Send for LimitedSource<S> where
    S: Send
[src]

impl<S> Sync for LimitedSource<S> where
    S: Sync
[src]

impl<S> Unpin for LimitedSource<S> where
    S: Unpin
[src]

impl<S> UnwindSafe for LimitedSource<S> where
    S: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.