Struct kas_core::layout::GridDimensions
source · [−]Expand description
Grid dimensions
Fields
cols: u32col_spans: u32rows: u32row_spans: u32Trait Implementations
sourceimpl Clone for GridDimensions
impl Clone for GridDimensions
sourcefn clone(&self) -> GridDimensions
fn clone(&self) -> GridDimensions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GridDimensions
impl Debug for GridDimensions
sourceimpl Default for GridDimensions
impl Default for GridDimensions
sourcefn default() -> GridDimensions
fn default() -> GridDimensions
Returns the “default value” for a type. Read more
sourceimpl Hash for GridDimensions
impl Hash for GridDimensions
sourceimpl PartialEq<GridDimensions> for GridDimensions
impl PartialEq<GridDimensions> for GridDimensions
sourcefn eq(&self, other: &GridDimensions) -> bool
fn eq(&self, other: &GridDimensions) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Copy for GridDimensions
impl Eq for GridDimensions
impl StructuralEq for GridDimensions
impl StructuralPartialEq for GridDimensions
Auto Trait Implementations
impl RefUnwindSafe for GridDimensions
impl Send for GridDimensions
impl Sync for GridDimensions
impl Unpin for GridDimensions
impl UnwindSafe for GridDimensions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
sourcefn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
Try approximate conversion from Self to T Read more
sourcefn cast_approx(self) -> T
fn cast_approx(self) -> T
Cast approximately from Self to T Read more
sourceimpl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
sourcefn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
sourcefn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
sourcefn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
sourcefn try_cast_trunc(self) -> Result<T, Error>
fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
sourcefn try_cast_nearest(self) -> Result<T, Error>
fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
sourcefn try_cast_floor(self) -> Result<T, Error>
fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
sourcefn try_cast_ceil(self) -> Result<T, Error>
fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.