pub struct Adapter {
pub function_type: u32,
pub instructions: Vec<Instruction>,
}Expand description
Represents an adapter.
Fields§
§function_type: u32The adapter function type.
instructions: Vec<Instruction>The instructions.
Trait Implementations§
Source§impl<W> ToBytes<W> for Adapterwhere
W: Write,
Encode an Adapter into bytes.
impl<W> ToBytes<W> for Adapterwhere
W: Write,
Encode an Adapter into bytes.
Decoder is in decoders::binary::adapters.
impl StructuralPartialEq for Adapter
Auto Trait Implementations§
impl Freeze for Adapter
impl RefUnwindSafe for Adapter
impl Send for Adapter
impl Sync for Adapter
impl Unpin for Adapter
impl UnwindSafe for Adapter
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