pub struct EncoderBlockResult {
pub pc: u64,
pub data: Vec<u8>,
}Expand description
Type that represents the result of an encoder block after being assembled.
Fields§
§pc: u64§data: Vec<u8>Trait Implementations§
Source§impl Clone for EncoderBlockResult
impl Clone for EncoderBlockResult
Source§fn clone(&self) -> EncoderBlockResult
fn clone(&self) -> EncoderBlockResult
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 moreSource§impl Debug for EncoderBlockResult
impl Debug for EncoderBlockResult
Source§impl Default for EncoderBlockResult
impl Default for EncoderBlockResult
Source§fn default() -> EncoderBlockResult
fn default() -> EncoderBlockResult
Returns the “default value” for a type. Read more
impl Eq for EncoderBlockResult
Source§impl Hash for EncoderBlockResult
impl Hash for EncoderBlockResult
Source§impl Ord for EncoderBlockResult
impl Ord for EncoderBlockResult
Source§fn cmp(&self, other: &EncoderBlockResult) -> Ordering
fn cmp(&self, other: &EncoderBlockResult) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EncoderBlockResult
impl PartialEq for EncoderBlockResult
Source§fn eq(&self, other: &EncoderBlockResult) -> bool
fn eq(&self, other: &EncoderBlockResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EncoderBlockResult
impl PartialOrd for EncoderBlockResult
impl StructuralPartialEq for EncoderBlockResult
Auto Trait Implementations§
impl Freeze for EncoderBlockResult
impl RefUnwindSafe for EncoderBlockResult
impl Send for EncoderBlockResult
impl Sync for EncoderBlockResult
impl Unpin for EncoderBlockResult
impl UnsafeUnpin for EncoderBlockResult
impl UnwindSafe for EncoderBlockResult
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