Struct torin::node::Node

source ·
pub struct Node {
Show 18 fields pub width: Size, pub height: Size, pub minimum_width: Size, pub minimum_height: Size, pub maximum_width: Size, pub maximum_height: Size, pub main_alignment: Alignment, pub cross_alignment: Alignment, pub padding: Gaps, pub margin: Gaps, pub offset_x: Length, pub offset_y: Length, pub direction: DirectionMode, pub position: Position, pub content: Content, pub has_layout_references: bool, pub contains_text: bool, pub spacing: Length,
}
Expand description

Node layout configuration

Fields§

§width: Size

Dimentions

§height: Size§minimum_width: Size§minimum_height: Size§maximum_width: Size§maximum_height: Size§main_alignment: Alignment§cross_alignment: Alignment§padding: Gaps

Inner padding

§margin: Gaps

Inner margin

§offset_x: Length

Inner position offsets

§offset_y: Length§direction: DirectionMode

Direction in which it’s inner Nodes will be stacked

§position: Position

Position config

§content: Content§has_layout_references: bool

A Node might depend on inner sizes but have a fixed position, like scroll views.

§contains_text: bool§spacing: Length

Implementations§

source§

impl Node

source

pub fn new() -> Self

Create a Node with the default values

source

pub fn from_size_and_direction( width: Size, height: Size, direction: DirectionMode, ) -> Self

Construct a new Node given a size and a direction

source

pub fn from_size_and_scroll( width: Size, height: Size, offset_x: Length, offset_y: Length, ) -> Self

Construct a new Node given a size and a scroll

source

pub fn from_size_and_padding(width: Size, height: Size, padding: Gaps) -> Self

Construct a new Node given a size and padding

source

pub fn from_size_and_alignments_and_direction( width: Size, height: Size, main_alignment: Alignment, cross_alignment: Alignment, direction: DirectionMode, ) -> Self

Construct a new Node given a size, alignments and a direction

source

pub fn from_size_and_margin(width: Size, height: Size, margin: Gaps) -> Self

Construct a new Node given a size and a direction

source

pub fn from_size_and_direction_and_margin( width: Size, height: Size, direction: DirectionMode, margin: Gaps, ) -> Self

Construct a new Node given a size and a direction and some margin,

source

pub fn from_size_and_alignments_and_direction_and_padding( width: Size, height: Size, main_alignment: Alignment, cross_alignment: Alignment, direction: DirectionMode, padding: Gaps, ) -> Self

Construct a new Node given a size, alignments and a direction

source

pub fn from_size_and_position( width: Size, height: Size, position: Position, ) -> Self

Construct a new Node given a size and a position

source

pub fn from_size_and_content( width: Size, height: Size, content: Content, ) -> Self

Construct a new Node given a size and content

source

pub fn from_size_and_direction_and_spacing( width: Size, height: Size, direction: DirectionMode, spacing: Length, ) -> Self

Construct a new Node given a size and spacing

source

pub fn does_depend_on_inner(&self) -> bool

Has properties that depend on the inner Nodes?

Trait Implementations§

source§

impl Clone for Node

source§

fn clone(&self) -> Node

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 Debug for Node

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Node

source§

fn default() -> Node

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

impl PartialEq for Node

source§

fn eq(&self, other: &Node) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Scaled for Node

source§

fn scale(&mut self, scale_factor: f32)

source§

impl StructuralPartialEq for Node

Auto Trait Implementations§

§

impl Freeze for Node

§

impl RefUnwindSafe for Node

§

impl Send for Node

§

impl Sync for Node

§

impl Unpin for Node

§

impl UnwindSafe for Node

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.

§

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 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> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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<T> Pointable for T

§

const ALIGN: usize = _

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
§

impl<T, O> SuperFrom<T> for O
where O: From<T>,

§

fn super_from(input: T) -> O

Convert from a type to another type.
§

impl<T, O, M> SuperInto<O, M> for T
where O: SuperFrom<T, M>,

§

fn super_into(self) -> O

Convert from a type to another type.
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.
§

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
§

impl<T> CloneAny for T
where T: Any + Clone,