Struct stanza::style::Styles

source ·
pub struct Styles(/* private fields */);

Implementations§

source§

impl Styles

source

pub fn with(self, style: impl Style) -> Self

source

pub fn insert<S: Style>(&mut self, style: S) -> Option<Box<dyn Style>>

source

pub fn with_all(self, styles: &Styles) -> Self

source

pub fn insert_all(&mut self, styles: &Styles)

source

pub fn get(&self, key: &str) -> Option<&dyn Style>

source

pub fn take(&mut self, key: &str) -> Option<Box<dyn Style>>

source

pub fn assert_assignability<S>(&self, check: impl FnMut(Assignability) -> bool)

Verifies the assignability of all styles by evaluating the given check predicate, panicking if the predicate evaluates to false for any style. The type S is used purely for generating the panic message.

Panics

If one of the styles is assignment-incompatible according to the predicate.

Trait Implementations§

source§

impl Clone for Styles

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for Styles

source§

fn default() -> Styles

Returns the “default value” for a type. Read more
source§

impl<'a> IntoIterator for &'a Styles

§

type Item = (&'a String, &'a Box<dyn Style>)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a, String, Box<dyn Style>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Styles

§

impl !Send for Styles

§

impl !Sync for Styles

§

impl Unpin for Styles

§

impl !UnwindSafe for Styles

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.