[][src]Struct shredder::Scanner

pub struct Scanner<'a> { /* fields omitted */ }

Scanner is a struct used to manage the scanning of data, sort of analogous to Hasher Usually you will only care about this while implementing Scan

Implementations

impl<'a> Scanner<'a>[src]

pub fn scan<T: Scan>(&mut self, from: &T)[src]

Scan a piece of data, tracking any Gcs found

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Scanner<'a>

impl<'a> !Send for Scanner<'a>

impl<'a> !Sync for Scanner<'a>

impl<'a> Unpin for Scanner<'a>

impl<'a> !UnwindSafe for Scanner<'a>

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, 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.