Struct r3bl_rs_utils::SmartListLine
source · pub struct SmartListLine<'a> {
pub indent: usize,
pub bullet_str: &'a str,
pub content: &'a str,
}
Fields§
§indent: usize
Spaces before the bullet (for all the lines in this list).
bullet_str: &'a str
Unordered or ordered.
content: &'a str
Does not contain any bullets or any spaces for the indent prefix.
Implementations§
source§impl<'a> SmartListLine<'a>
impl<'a> SmartListLine<'a>
Trait Implementations§
source§impl<'a> Clone for SmartListLine<'a>
impl<'a> Clone for SmartListLine<'a>
source§fn clone(&self) -> SmartListLine<'a>
fn clone(&self) -> SmartListLine<'a>
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<'a> Debug for SmartListLine<'a>
impl<'a> Debug for SmartListLine<'a>
source§impl<'a> PartialEq<SmartListLine<'a>> for SmartListLine<'a>
impl<'a> PartialEq<SmartListLine<'a>> for SmartListLine<'a>
source§fn eq(&self, other: &SmartListLine<'a>) -> bool
fn eq(&self, other: &SmartListLine<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> StructuralPartialEq for SmartListLine<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for SmartListLine<'a>
impl<'a> Send for SmartListLine<'a>
impl<'a> Sync for SmartListLine<'a>
impl<'a> Unpin for SmartListLine<'a>
impl<'a> UnwindSafe for SmartListLine<'a>
Blanket Implementations§
source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere T: FloatComponent, Swp: WhitePoint, Dwp: WhitePoint, D: AdaptFrom<S, Swp, Dwp, T>,
source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere M: TransformMatrix<Swp, Dwp, T>,
Convert the source color to the destination color using the specified
method
source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford
method by default
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, U> IntoColor<U> for Twhere
U: FromColor<T>,
impl<T, U> IntoColor<U> for Twhere U: FromColor<T>,
source§fn into_color(self) -> U
fn into_color(self) -> U
Convert into T with values clamped to the color defined bounds Read more
source§impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for Twhere U: FromColorUnclamped<T>,
source§fn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
source§impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for Twhere U: TryFromColor<T>,
source§fn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
Convert into T, returning ok if the color is inside of its defined
range, otherwise an
OutOfBounds
error is returned which contains
the unclamped color. Read more