pub enum LoadReceiptRole {
Library,
BootCodec {
name: String,
symbol: String,
},
}Expand description
The role a loaded library serves in a boot session.
Variants§
Library
A library requested with --load.
BootCodec
The selected codec loaded before the rest of the boot list.
Trait Implementations§
Source§impl Clone for LoadReceiptRole
impl Clone for LoadReceiptRole
Source§fn clone(&self) -> LoadReceiptRole
fn clone(&self) -> LoadReceiptRole
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 LoadReceiptRole
impl Debug for LoadReceiptRole
impl Eq for LoadReceiptRole
Source§impl PartialEq for LoadReceiptRole
impl PartialEq for LoadReceiptRole
Source§fn eq(&self, other: &LoadReceiptRole) -> bool
fn eq(&self, other: &LoadReceiptRole) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LoadReceiptRole
Auto Trait Implementations§
impl Freeze for LoadReceiptRole
impl RefUnwindSafe for LoadReceiptRole
impl Send for LoadReceiptRole
impl Sync for LoadReceiptRole
impl Unpin for LoadReceiptRole
impl UnsafeUnpin for LoadReceiptRole
impl UnwindSafe for LoadReceiptRole
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