[][src]Struct mc_legacy_formatting::Styles

pub struct Styles { /* fields omitted */ }

Styles that can be combined and applied to a Span.

The RESET flag is missing because the parser implemented in SpanIter takes care of it for you.

See wiki.vg's docs for detailed info about each style.

Examples

use mc_legacy_formatting::Styles;
let styles = Styles::BOLD | Styles::ITALIC | Styles::UNDERLINED;

assert!(styles.contains(Styles::BOLD));
assert!(!styles.contains(Styles::RANDOM));

Implementations

impl Styles[src]

pub const RANDOM: Styles[src]

Signals that the Span's text should be replaced with randomized characters at a constant interval

pub const BOLD: Styles[src]

Signals that the Span's text should be bold

pub const STRIKETHROUGH: Styles[src]

Signals that the Span's text should be strikethrough

pub const UNDERLINED: Styles[src]

Signals that the Span's text should be underlined

pub const ITALIC: Styles[src]

Signals that the Span's text should be italic

pub const fn empty() -> Styles[src]

Returns an empty set of flags

pub const fn all() -> Styles[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<Styles>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> Styles[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> Styles[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: Styles) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: Styles) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: Styles)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: Styles)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: Styles)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: Styles, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

impl Styles[src]

pub fn from_char(c: char) -> Option<Self>[src]

Map a char to a Styles object.

Returns None if c didn't map to a Styles object.

Trait Implementations

impl Binary for Styles[src]

impl BitAnd<Styles> for Styles[src]

type Output = Styles

The resulting type after applying the & operator.

pub fn bitand(self, other: Styles) -> Styles[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<Styles> for Styles[src]

pub fn bitand_assign(&mut self, other: Styles)[src]

Disables all flags disabled in the set.

impl BitOr<Styles> for Styles[src]

type Output = Styles

The resulting type after applying the | operator.

pub fn bitor(self, other: Styles) -> Styles[src]

Returns the union of the two sets of flags.

impl BitOrAssign<Styles> for Styles[src]

pub fn bitor_assign(&mut self, other: Styles)[src]

Adds the set of flags.

impl BitXor<Styles> for Styles[src]

type Output = Styles

The resulting type after applying the ^ operator.

pub fn bitxor(self, other: Styles) -> Styles[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<Styles> for Styles[src]

pub fn bitxor_assign(&mut self, other: Styles)[src]

Toggles the set of flags.

impl Clone for Styles[src]

impl Copy for Styles[src]

impl Debug for Styles[src]

impl Default for Styles[src]

impl Eq for Styles[src]

impl Extend<Styles> for Styles[src]

impl FromIterator<Styles> for Styles[src]

impl Hash for Styles[src]

impl LowerHex for Styles[src]

impl Not for Styles[src]

type Output = Styles

The resulting type after applying the ! operator.

pub fn not(self) -> Styles[src]

Returns the complement of this set of flags.

impl Octal for Styles[src]

impl Ord for Styles[src]

impl PartialEq<Styles> for Styles[src]

impl PartialOrd<Styles> for Styles[src]

impl StructuralEq for Styles[src]

impl StructuralPartialEq for Styles[src]

impl Sub<Styles> for Styles[src]

type Output = Styles

The resulting type after applying the - operator.

pub fn sub(self, other: Styles) -> Styles[src]

Returns the set difference of the two sets of flags.

impl SubAssign<Styles> for Styles[src]

pub fn sub_assign(&mut self, other: Styles)[src]

Disables all flags enabled in the set.

impl UpperHex for Styles[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.