pub struct FaiMetadata {
pub offset: u64,
pub line_bases: u32,
pub line_bytes: u32,
}Expand description
FASTA index (FAI) metadata for a sequence. This data is only present when a sequence was loaded from a FASTA file.
Fields§
§offset: u64§line_bases: u32§line_bytes: u32Trait Implementations§
Source§impl Clone for FaiMetadata
impl Clone for FaiMetadata
Source§fn clone(&self) -> FaiMetadata
fn clone(&self) -> FaiMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FaiMetadata
impl Debug for FaiMetadata
Source§impl<'de> Deserialize<'de> for FaiMetadata
impl<'de> Deserialize<'de> for FaiMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FaiMetadata
impl RefUnwindSafe for FaiMetadata
impl Send for FaiMetadata
impl Sync for FaiMetadata
impl Unpin for FaiMetadata
impl UnsafeUnpin for FaiMetadata
impl UnwindSafe for FaiMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more