pub struct FibCodeWireV1;Expand description
Self-describing wire format codec.
Implementations§
Source§impl FibCodeWireV1
impl FibCodeWireV1
Sourcepub fn to_wire_bytes(
code: &FibCodeV1,
profile: &FibQuantProfileV1,
) -> Result<Vec<u8>>
pub fn to_wire_bytes( code: &FibCodeV1, profile: &FibQuantProfileV1, ) -> Result<Vec<u8>>
Encode a FibCodeV1 with profile metadata into a self-describing wire format. The header carries all profile fields needed to reconstruct the quantizer for decode.
Sourcepub fn parse_header(bytes: &[u8]) -> Result<WireHeader>
pub fn parse_header(bytes: &[u8]) -> Result<WireHeader>
Parse only the header from wire bytes. Does not decode the body. Useful for metadata extraction without building a quantizer.
Sourcepub fn from_wire_bytes(bytes: &[u8]) -> Result<(FibCodeV1, FibQuantProfileV1)>
pub fn from_wire_bytes(bytes: &[u8]) -> Result<(FibCodeV1, FibQuantProfileV1)>
Decode a self-describing wire payload into a FibCodeV1 and the reconstructed FibQuantProfileV1. The caller can use the profile to build a FibQuantizer for decode.
Auto Trait Implementations§
impl Freeze for FibCodeWireV1
impl RefUnwindSafe for FibCodeWireV1
impl Send for FibCodeWireV1
impl Sync for FibCodeWireV1
impl Unpin for FibCodeWireV1
impl UnsafeUnpin for FibCodeWireV1
impl UnwindSafe for FibCodeWireV1
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> 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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.