pub enum Warning<B> {
MalformedIri(String),
EmptyTerm,
BlankNodeIdProperty(B),
MalformedLanguageTag(String, InvalidLangTag<String>),
}
Variants§
MalformedIri(String)
EmptyTerm
BlankNodeIdProperty(B)
MalformedLanguageTag(String, InvalidLangTag<String>)
Trait Implementations§
Source§impl<B, N: BlankIdVocabulary<BlankId = B>> DisplayWithContext<N> for Warning<B>
impl<B, N: BlankIdVocabulary<BlankId = B>> DisplayWithContext<N> for Warning<B>
Source§impl<B> From<MalformedIri> for Warning<B>
impl<B> From<MalformedIri> for Warning<B>
Source§fn from(MalformedIri: MalformedIri) -> Self
fn from(MalformedIri: MalformedIri) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<B> Freeze for Warning<B>where
B: Freeze,
impl<B> RefUnwindSafe for Warning<B>where
B: RefUnwindSafe,
impl<B> Send for Warning<B>where
B: Send,
impl<B> Sync for Warning<B>where
B: Sync,
impl<B> Unpin for Warning<B>where
B: Unpin,
impl<B> UnwindSafe for Warning<B>where
B: 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