pub enum LibrarySelection {
Empty = 0,
A = 1,
B = 2,
C = 3,
D = 4,
E = 5,
LRA = 6,
Reserved = 7,
}Variants§
Trait Implementations§
Source§impl Clone for LibrarySelection
impl Clone for LibrarySelection
Source§fn clone(&self) -> LibrarySelection
fn clone(&self) -> LibrarySelection
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 LibrarySelection
impl Debug for LibrarySelection
Source§impl From<u8> for LibrarySelection
impl From<u8> for LibrarySelection
Source§fn from(val: u8) -> LibrarySelection
fn from(val: u8) -> LibrarySelection
Converts to this type from the input type.
impl Copy for LibrarySelection
Auto Trait Implementations§
impl Freeze for LibrarySelection
impl RefUnwindSafe for LibrarySelection
impl Send for LibrarySelection
impl Sync for LibrarySelection
impl Unpin for LibrarySelection
impl UnwindSafe for LibrarySelection
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