pub enum Binding {
LOCAL,
GLOBAL,
WEAK,
GNU_UNIQUE,
UNKNOWN(u32),
}
Variants§
Implementations§
§impl Binding
impl Binding
pub fn from_value(value: u32) -> Self
Trait Implementations§
§impl Ord for Binding
impl Ord for Binding
§impl PartialOrd<Binding> for Binding
impl PartialOrd<Binding> for Binding
§fn partial_cmp(&self, other: &Binding) -> Option<Ordering>
fn partial_cmp(&self, other: &Binding) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Binding
impl Eq for Binding
impl StructuralEq for Binding
impl StructuralPartialEq for Binding
Auto Trait Implementations§
impl RefUnwindSafe for Binding
impl Send for Binding
impl Sync for Binding
impl Unpin for Binding
impl UnwindSafe for Binding
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