pub struct SliceTypeFind<T: AsRef<[u8]>> {
    pub probability: Option<TypeFindProbability>,
    pub caps: Option<Caps>,
    /* private fields */
}

Fields§

§probability: Option<TypeFindProbability>§caps: Option<Caps>

Implementations§

source§

impl<T: AsRef<[u8]>> SliceTypeFind<T>

source

pub fn new(data: T) -> SliceTypeFind<T>

source

pub fn run(&mut self)

source

pub fn type_find(data: T) -> (TypeFindProbability, Option<Caps>)

Trait Implementations§

source§

impl<T: Debug + AsRef<[u8]>> Debug for SliceTypeFind<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: AsRef<[u8]>> TypeFindImpl for SliceTypeFind<T>

source§

fn peek(&mut self, offset: i64, size: u32) -> Option<&[u8]>

source§

fn suggest(&mut self, probability: TypeFindProbability, caps: &Caps)

source§

fn length(&self) -> Option<u64>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for SliceTypeFind<T>
where T: RefUnwindSafe,

§

impl<T> Send for SliceTypeFind<T>
where T: Send,

§

impl<T> Sync for SliceTypeFind<T>
where T: Sync,

§

impl<T> Unpin for SliceTypeFind<T>
where T: Unpin,

§

impl<T> UnwindSafe for SliceTypeFind<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.