pub struct KeystoneOutput {
pub size: u32,
pub stat_count: u32,
pub bytes: Vec<u8>,
}
Expand description
Output object created after assembling instructions.
Fields§
§size: u32
Size of the array storing the encoded instructions.
stat_count: u32
Number of instructions that were successfully encoded.
bytes: Vec<u8>
Array of encoded instructions.
Trait Implementations§
Source§impl Clone for KeystoneOutput
impl Clone for KeystoneOutput
Source§fn clone(&self) -> KeystoneOutput
fn clone(&self) -> KeystoneOutput
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 KeystoneOutput
impl Debug for KeystoneOutput
Source§impl Display for KeystoneOutput
impl Display for KeystoneOutput
Source§impl Hash for KeystoneOutput
impl Hash for KeystoneOutput
Source§impl Ord for KeystoneOutput
impl Ord for KeystoneOutput
Source§fn cmp(&self, other: &KeystoneOutput) -> Ordering
fn cmp(&self, other: &KeystoneOutput) -> Ordering
1.21.0 · 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 KeystoneOutput
impl PartialEq for KeystoneOutput
Source§impl PartialOrd for KeystoneOutput
impl PartialOrd for KeystoneOutput
impl Eq for KeystoneOutput
impl StructuralPartialEq for KeystoneOutput
Auto Trait Implementations§
impl Freeze for KeystoneOutput
impl RefUnwindSafe for KeystoneOutput
impl Send for KeystoneOutput
impl Sync for KeystoneOutput
impl Unpin for KeystoneOutput
impl UnwindSafe for KeystoneOutput
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