pub struct PreparedSidecar {
pub bytes: Vec<u8>,
pub scheme: String,
pub label_tuning: Option<PreparedSidecarLabelTuning>,
pub carriers: Vec<SidecarCarrier>,
pub seed: u32,
pub sha256: String,
pub sha256_bytes: [u8; 32],
}Fields§
§bytes: Vec<u8>§scheme: String§label_tuning: Option<PreparedSidecarLabelTuning>§carriers: Vec<SidecarCarrier>§seed: u32§sha256: String§sha256_bytes: [u8; 32]Trait Implementations§
Source§impl Clone for PreparedSidecar
impl Clone for PreparedSidecar
Source§fn clone(&self) -> PreparedSidecar
fn clone(&self) -> PreparedSidecar
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PreparedSidecar
impl RefUnwindSafe for PreparedSidecar
impl Send for PreparedSidecar
impl Sync for PreparedSidecar
impl Unpin for PreparedSidecar
impl UnsafeUnpin for PreparedSidecar
impl UnwindSafe for PreparedSidecar
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