pub struct ZeroPadded { /* private fields */ }
Implementations§
Source§impl ZeroPadded
impl ZeroPadded
pub fn id(&self) -> OracleId
pub fn n_pad_vars(&self) -> usize
pub fn nonzero_index(&self) -> usize
pub fn start_index(&self) -> usize
Trait Implementations§
Source§impl Clone for ZeroPadded
impl Clone for ZeroPadded
Source§fn clone(&self) -> ZeroPadded
fn clone(&self) -> ZeroPadded
Returns a copy 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 ZeroPadded
impl Debug for ZeroPadded
Source§impl DeserializeBytes for ZeroPadded
impl DeserializeBytes for ZeroPadded
fn deserialize(
read_buf: impl Buf,
mode: SerializationMode,
) -> Result<Self, SerializationError>where
Self: Sized,
Source§impl PartialEq for ZeroPadded
impl PartialEq for ZeroPadded
Source§impl SerializeBytes for ZeroPadded
impl SerializeBytes for ZeroPadded
fn serialize( &self, write_buf: impl BufMut, mode: SerializationMode, ) -> Result<(), SerializationError>
impl Eq for ZeroPadded
impl StructuralPartialEq for ZeroPadded
Auto Trait Implementations§
impl Freeze for ZeroPadded
impl RefUnwindSafe for ZeroPadded
impl Send for ZeroPadded
impl Sync for ZeroPadded
impl Unpin for ZeroPadded
impl UnwindSafe for ZeroPadded
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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