pub enum RequestNla {
Bytecode(Vec<u8>),
Other(DefaultNla),
}Variants§
Bytecode(Vec<u8>)
The raw bytes of a bytecode program. See crate::inet::bytecode for
parsing and serializing bytecode programs.
Other(DefaultNla)
Trait Implementations§
Source§impl Clone for RequestNla
impl Clone for RequestNla
Source§fn clone(&self) -> RequestNla
fn clone(&self) -> RequestNla
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 RequestNla
impl Debug for RequestNla
Source§impl Nla for RequestNla
impl Nla for RequestNla
Source§impl PartialEq for RequestNla
impl PartialEq for RequestNla
impl Eq for RequestNla
impl StructuralPartialEq for RequestNla
Auto Trait Implementations§
impl Freeze for RequestNla
impl RefUnwindSafe for RequestNla
impl Send for RequestNla
impl Sync for RequestNla
impl Unpin for RequestNla
impl UnsafeUnpin for RequestNla
impl UnwindSafe for RequestNla
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