Enum rdf_types::QuadExportFailed
source · pub enum QuadExportFailed<S, P, O, G> {
Subject(S),
Predicate(P),
Object(O),
Graph(G),
}Variants§
Trait Implementations§
source§impl<S, P, O, G> Display for QuadExportFailed<S, P, O, G>where
S: Display,
P: Display,
O: Display,
G: Display,
impl<S, P, O, G> Display for QuadExportFailed<S, P, O, G>where S: Display, P: Display, O: Display, G: Display,
source§impl<S, P, O, G> Error for QuadExportFailed<S, P, O, G>where
Self: Debug + Display,
impl<S, P, O, G> Error for QuadExportFailed<S, P, O, G>where Self: Debug + Display,
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl<S, P, O, G> RefUnwindSafe for QuadExportFailed<S, P, O, G>where G: RefUnwindSafe, O: RefUnwindSafe, P: RefUnwindSafe, S: RefUnwindSafe,
impl<S, P, O, G> Send for QuadExportFailed<S, P, O, G>where G: Send, O: Send, P: Send, S: Send,
impl<S, P, O, G> Sync for QuadExportFailed<S, P, O, G>where G: Sync, O: Sync, P: Sync, S: Sync,
impl<S, P, O, G> Unpin for QuadExportFailed<S, P, O, G>where G: Unpin, O: Unpin, P: Unpin, S: Unpin,
impl<S, P, O, G> UnwindSafe for QuadExportFailed<S, P, O, G>where G: UnwindSafe, O: UnwindSafe, P: UnwindSafe, S: UnwindSafe,
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