Enum r3_core::bind::GetBindTableError
source · pub enum GetBindTableError {
BadContext,
}
Expand description
Error type for BindTable::get
.
Variants§
BadContext
The boot phase is not complete.
Trait Implementations§
source§impl Clone for GetBindTableError
impl Clone for GetBindTableError
source§fn clone(&self) -> GetBindTableError
fn clone(&self) -> GetBindTableError
Returns a copy 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 GetBindTableError
impl Debug for GetBindTableError
source§impl Hash for GetBindTableError
impl Hash for GetBindTableError
source§impl Ord for GetBindTableError
impl Ord for GetBindTableError
source§fn cmp(&self, other: &GetBindTableError) -> Ordering
fn cmp(&self, other: &GetBindTableError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<GetBindTableError> for GetBindTableError
impl PartialEq<GetBindTableError> for GetBindTableError
source§fn eq(&self, other: &GetBindTableError) -> bool
fn eq(&self, other: &GetBindTableError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<GetBindTableError> for GetBindTableError
impl PartialOrd<GetBindTableError> for GetBindTableError
source§fn partial_cmp(&self, other: &GetBindTableError) -> Option<Ordering>
fn partial_cmp(&self, other: &GetBindTableError) -> 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 more