Struct Level
pub struct Level<'a> {
pub(crate) name: Option<Option<&'a str>>,
pub(crate) level: LevelInner,
}
Expand description
[Message
] or [Title
] severity level
Fields§
§name: Option<Option<&'a str>>
§level: LevelInner
Implementations§
§impl<'a> Level<'a>
impl<'a> Level<'a>
§impl<'a> Level<'a>
impl<'a> Level<'a>
pub fn header(self, header: &'a str) -> Message<'a>
pub fn header(self, header: &'a str) -> Message<'a>
Text passed to this function is considered “untrusted input”, as such all text is passed through a normalization function. Pre-styled text is not allowed to be passed to this function.
pub fn title(self, title: &'a str) -> Title<'a>
pub fn title(self, title: &'a str) -> Title<'a>
Text passed to this function is allowed to be pre-styled, as such all
text is considered “trusted input” and has no normalizations applied to
it. normalize_untrusted_str
can be
used to normalize untrusted text before it is passed to this function.
Trait Implementations§
§impl<'a> Ord for Level<'a>
impl<'a> Ord for Level<'a>
§impl<'a> PartialOrd for Level<'a>
impl<'a> PartialOrd for Level<'a>
impl<'a> Eq for Level<'a>
impl<'a> StructuralPartialEq for Level<'a>
Auto Trait Implementations§
impl<'a> Freeze for Level<'a>
impl<'a> RefUnwindSafe for Level<'a>
impl<'a> Send for Level<'a>
impl<'a> Sync for Level<'a>
impl<'a> Unpin for Level<'a>
impl<'a> UnwindSafe for Level<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<I, T> ExtractContext<I, ()> for T
impl<I, T> ExtractContext<I, ()> for T
§fn extract_context(self, _original_input: I)
fn extract_context(self, _original_input: I)
Given the context attached to a nom error, and given the original
input to the nom parser, extract more the useful context information. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<I> RecreateContext<I> for I
impl<I> RecreateContext<I> for I
§fn recreate_context(_original_input: I, tail: I) -> I
fn recreate_context(_original_input: I, tail: I) -> I
Given the original input, as well as the context reported by nom,
recreate a context in the original string where the error occurred. Read more