Enum ambient_api::prelude::Layout
source · pub enum Layout {
Flow,
Dock,
Bookcase,
WidthToChildren,
}
Expand description
Layout: The type of the layout to use.
Variants§
Flow
Bottom-up flow layout.
Dock
Top-down dock layout.
Bookcase
Min-max bookcase layout.
WidthToChildren
Width to children.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Layout
impl<'de> Deserialize<'de> for Layout
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<Layout, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Layout, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EnumComponent for Layout
impl EnumComponent for Layout
source§impl MessageSerde for Layout
impl MessageSerde for Layout
source§fn serialize_message_part(
&self,
output: &mut Vec<u8>
) -> Result<(), MessageSerdeError>
fn serialize_message_part( &self, output: &mut Vec<u8> ) -> Result<(), MessageSerdeError>
Serialize this to a
Vec<u8>
.source§fn deserialize_message_part(
input: &mut dyn Read
) -> Result<Layout, MessageSerdeError>
fn deserialize_message_part( input: &mut dyn Read ) -> Result<Layout, MessageSerdeError>
Deserialize this if possible.
source§impl PartialEq for Layout
impl PartialEq for Layout
source§impl Serialize for Layout
impl Serialize for Layout
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
source§impl SupportedValue for Layout
impl SupportedValue for Layout
source§fn from_value(value: ComponentValue) -> Option<Layout>
fn from_value(value: ComponentValue) -> Option<Layout>
Converts a
ComponentValue
into a Self
.source§fn into_value(self) -> ComponentValue
fn into_value(self) -> ComponentValue
Converts a
Self
into a ComponentValue
.impl Copy for Layout
impl Eq for Layout
impl StructuralEq for Layout
impl StructuralPartialEq for Layout
Auto Trait Implementations§
impl RefUnwindSafe for Layout
impl Send for Layout
impl Sync for Layout
impl Unpin for Layout
impl UnwindSafe for Layout
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
source§impl<T> Downcast for T
impl<T> Downcast for T
source§impl<T> ElementComponentName for T
impl<T> ElementComponentName for T
source§fn element_component_name(&self) -> &'static str
fn element_component_name(&self) -> &'static str
Returns the name of the type implementing ElementComponent.
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.