Struct freya::elements::paragraph

pub struct paragraph;

Implementations§

§

impl paragraph

pub const layer: (&'static str, Option<&'static str>, bool) = ("layer", None, false)

pub const height: (&'static str, Option<&'static str>, bool) = ("height", None, false)

pub const width: (&'static str, Option<&'static str>, bool) = ("width", None, false)

pub const min_height: (&'static str, Option<&'static str>, bool) = ("min_height", None, false)

pub const min_width: (&'static str, Option<&'static str>, bool) = ("min_width", None, false)

pub const max_height: (&'static str, Option<&'static str>, bool) = ("max_height", None, false)

pub const max_width: (&'static str, Option<&'static str>, bool) = ("max_width", None, false)

pub const text_align: (&'static str, Option<&'static str>, bool) = ("text_align", None, false)

pub const cursor_index: (&'static str, Option<&'static str>, bool) = ("cursor_index", None, false)

pub const max_lines: (&'static str, Option<&'static str>, bool) = ("max_lines", None, false)

pub const cursor_color: (&'static str, Option<&'static str>, bool) = ("cursor_color", None, false)

pub const cursor_mode: (&'static str, Option<&'static str>, bool) = ("cursor_mode", None, false)

pub const line_height: (&'static str, Option<&'static str>, bool) = ("line_height", None, false)

pub const cursor_id: (&'static str, Option<&'static str>, bool) = ("cursor_id", None, false)

pub const direction: (&'static str, Option<&'static str>, bool) = ("direction", None, false)

pub const rotate: (&'static str, Option<&'static str>, bool) = ("rotate", None, false)

pub const role: (&'static str, Option<&'static str>, bool) = ("role", None, false)

pub const focus_id: (&'static str, Option<&'static str>, bool) = ("focus_id", None, false)

pub const highlights: (&'static str, Option<&'static str>, bool) = ("highlights", None, false)

pub const highlight_color: (&'static str, Option<&'static str>, bool) = ("highlight_color", None, false)

pub const font_size: (&'static str, Option<&'static str>, bool) = ("font_size", None, false)

pub const font_family: (&'static str, Option<&'static str>, bool) = ("font_family", None, false)

pub const alt: (&'static str, Option<&'static str>, bool) = ("alt", None, false)

pub const name: (&'static str, Option<&'static str>, bool) = ("name", None, false)

pub const font_style: (&'static str, Option<&'static str>, bool) = ("font_style", None, false)

pub const font_weight: (&'static str, Option<&'static str>, bool) = ("font_weight", None, false)

pub const font_width: (&'static str, Option<&'static str>, bool) = ("font_width", None, false)

pub const letter_spacing: (&'static str, Option<&'static str>, bool) = ("letter_spacing", None, false)

pub const word_spacing: (&'static str, Option<&'static str>, bool) = ("word_spacing", None, false)

pub const decoration: (&'static str, Option<&'static str>, bool) = ("decoration", None, false)

pub const decoration_style: (&'static str, Option<&'static str>, bool) = ("decoration_style", None, false)

pub const decoration_color: (&'static str, Option<&'static str>, bool) = ("decoration_color", None, false)

pub const text_overflow: (&'static str, Option<&'static str>, bool) = ("text_overflow", None, false)

pub const overflow: (&'static str, Option<&'static str>, bool) = ("overflow", None, false)

pub const focusable: (&'static str, Option<&'static str>, bool) = ("focusable", None, false)

pub const margin: (&'static str, Option<&'static str>, bool) = ("margin", None, false)

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<T> To for Twhere T: ?Sized,

§

fn to<T>(self) -> Twhere Self: Into<T>,

Converts to T by calling Into<T>::into.
§

fn try_to<T>(self) -> Result<T, Self::Error>where Self: TryInto<T>,

Tries to convert to T by calling TryInto<T>::try_into.
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more