Skip to main content

GridTrack

Enum GridTrack 

Source
pub enum GridTrack {
    Points(f32),
    Percent(f32),
    Fr(f32),
    Auto,
    MinContent,
    MaxContent,
    MinMax(Box<GridTrack>, Box<GridTrack>),
    Repeat {
        count: u16,
        tracks: Vec<GridTrack>,
    },
    AutoFit(Box<GridTrack>),
    AutoFill(Box<GridTrack>),
}

Variants§

§

Points(f32)

Fixed track size in logical points.

§

Percent(f32)

Percentage of the available grid axis. 50.0 means 50%.

§

Fr(f32)

Fraction of remaining free space after fixed and intrinsic tracks.

§

Auto

Track sized by the largest participating item’s intrinsic size.

§

MinContent

Track sized by the participating items’ minimum intrinsic size.

§

MaxContent

Track sized by the participating items’ preferred intrinsic size.

§

MinMax(Box<GridTrack>, Box<GridTrack>)

Track with independent minimum and maximum sizing functions.

§

Repeat

Repeats an ordered track list a fixed number of times.

Fields

§count: u16
§tracks: Vec<GridTrack>
§

AutoFit(Box<GridTrack>)

Repeats a track to fit available space, dropping empty trailing tracks.

§

AutoFill(Box<GridTrack>)

Repeats a track to fill available space, retaining empty tracks.

Implementations§

Source§

impl GridTrack

Source

pub fn minmax(min: GridTrack, max: GridTrack) -> GridTrack

Creates a minmax(min, max) grid track.

§Example
use fission_ir::op::GridTrack;

let track = GridTrack::minmax(GridTrack::Points(180.0), GridTrack::Fr(1.0));
Source

pub fn repeat(count: u16, tracks: impl Into<Vec<GridTrack>>) -> GridTrack

Repeats tracks count times.

Source

pub fn auto_fit(track: GridTrack) -> GridTrack

Repeats track up to the available space and collapses empty tracks.

Source

pub fn auto_fill(track: GridTrack) -> GridTrack

Repeats track up to the available space and keeps empty tracks.

Trait Implementations§

Source§

impl Clone for GridTrack

Source§

fn clone(&self) -> GridTrack

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for GridTrack

Source§

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

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

impl<'de> Deserialize<'de> for GridTrack

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<GridTrack, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Hash for GridTrack

Source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for GridTrack

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl Serialize for GridTrack

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for GridTrack

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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,

Source§

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>,

Source§

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>,

Source§

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.