pub struct StreamingTTHeader {
pub magic: [u8; 4],
pub version: u16,
pub config: TTConfig,
pub vector_count: u64,
pub data_start: u64,
}Expand description
Streaming TT header (written as trailer at end of file).
Fields§
§magic: [u8; 4]§version: u16§config: TTConfig§vector_count: u64§data_start: u64Trait Implementations§
Source§impl Clone for StreamingTTHeader
impl Clone for StreamingTTHeader
Source§fn clone(&self) -> StreamingTTHeader
fn clone(&self) -> StreamingTTHeader
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 StreamingTTHeader
impl Debug for StreamingTTHeader
Source§impl<'de> Deserialize<'de> for StreamingTTHeader
impl<'de> Deserialize<'de> for StreamingTTHeader
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
Source§impl PartialEq for StreamingTTHeader
impl PartialEq for StreamingTTHeader
Source§impl Serialize for StreamingTTHeader
impl Serialize for StreamingTTHeader
impl StructuralPartialEq for StreamingTTHeader
Auto Trait Implementations§
impl Freeze for StreamingTTHeader
impl RefUnwindSafe for StreamingTTHeader
impl Send for StreamingTTHeader
impl Sync for StreamingTTHeader
impl Unpin for StreamingTTHeader
impl UnsafeUnpin for StreamingTTHeader
impl UnwindSafe for StreamingTTHeader
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more