[][src]Struct finch::serialization::MultiSketch

pub struct MultiSketch {
    pub kmer: u8,
    pub alphabet: String,
    pub preserve_case: bool,
    pub canonical: bool,
    pub sketch_size: u32,
    pub hash_type: String,
    pub hash_bits: u16,
    pub hash_seed: u64,
    pub scale: Option<f64>,
    pub sketches: Vec<JsonSketch>,
}

Fields

kmer: u8alphabet: Stringpreserve_case: boolcanonical: boolsketch_size: u32hash_type: Stringhash_bits: u16hash_seed: u64scale: Option<f64>sketches: Vec<JsonSketch>

Implementations

impl MultiSketch[src]

Trait Implementations

impl Debug for MultiSketch[src]

impl<'de> Deserialize<'de> for MultiSketch[src]

impl Serialize for MultiSketch[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.