pub enum FactBindingError {
Gatekeep(GatekeepError),
}Expand description
Errors returned while building typed fact bindings.
Variants§
Gatekeep(GatekeepError)
The gatekeep fact marker had an invalid id.
Trait Implementations§
Source§impl Clone for FactBindingError
impl Clone for FactBindingError
Source§fn clone(&self) -> FactBindingError
fn clone(&self) -> FactBindingError
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 FactBindingError
impl Debug for FactBindingError
Source§impl Display for FactBindingError
impl Display for FactBindingError
impl Eq for FactBindingError
Source§impl Error for FactBindingError
impl Error for FactBindingError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<GatekeepError> for FactBindingError
impl From<GatekeepError> for FactBindingError
Source§fn from(source: GatekeepError) -> Self
fn from(source: GatekeepError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FactBindingError
impl PartialEq for FactBindingError
impl StructuralPartialEq for FactBindingError
Auto Trait Implementations§
impl Freeze for FactBindingError
impl RefUnwindSafe for FactBindingError
impl Send for FactBindingError
impl Sync for FactBindingError
impl Unpin for FactBindingError
impl UnsafeUnpin for FactBindingError
impl UnwindSafe for FactBindingError
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