Enum r3bl_rs_utils::LayoutDirection
source · #[non_exhaustive]pub enum LayoutDirection {
Horizontal,
Vertical,
}Expand description
Direction of the layout of the box.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for LayoutDirection
impl Clone for LayoutDirection
source§fn clone(&self) -> LayoutDirection
fn clone(&self) -> LayoutDirection
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LayoutDirection
impl Debug for LayoutDirection
source§impl Default for LayoutDirection
impl Default for LayoutDirection
source§fn default() -> LayoutDirection
fn default() -> LayoutDirection
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LayoutDirection
impl<'de> Deserialize<'de> for LayoutDirection
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<LayoutDirection, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<LayoutDirection, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for LayoutDirection
impl Hash for LayoutDirection
source§impl PartialEq for LayoutDirection
impl PartialEq for LayoutDirection
source§fn eq(&self, other: &LayoutDirection) -> bool
fn eq(&self, other: &LayoutDirection) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for LayoutDirection
impl Serialize for LayoutDirection
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
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
impl Copy for LayoutDirection
impl Eq for LayoutDirection
impl StructuralEq for LayoutDirection
impl StructuralPartialEq for LayoutDirection
Auto Trait Implementations§
impl RefUnwindSafe for LayoutDirection
impl Send for LayoutDirection
impl Sync for LayoutDirection
impl Unpin for LayoutDirection
impl UnwindSafe for LayoutDirection
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.