pub enum ViewDefinitionProperties {
ViewCorePropertyDefinition(ViewCorePropertyDefinition),
ConnectionDefinition(ConnectionDefinition),
}Expand description
Properties in a view definition.
Variants§
ViewCorePropertyDefinition(ViewCorePropertyDefinition)
A view property referencing a property in a container.
ConnectionDefinition(ConnectionDefinition)
A connection to a view.
Trait Implementations§
Source§impl Clone for ViewDefinitionProperties
impl Clone for ViewDefinitionProperties
Source§fn clone(&self) -> ViewDefinitionProperties
fn clone(&self) -> ViewDefinitionProperties
Returns a duplicate 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 ViewDefinitionProperties
impl Debug for ViewDefinitionProperties
Source§impl<'de> Deserialize<'de> for ViewDefinitionProperties
impl<'de> Deserialize<'de> for ViewDefinitionProperties
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ViewDefinitionProperties> for CreateViewPropertyOrConnectionDefinition
impl From<ViewDefinitionProperties> for CreateViewPropertyOrConnectionDefinition
Source§fn from(value: ViewDefinitionProperties) -> Self
fn from(value: ViewDefinitionProperties) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ViewDefinitionProperties
impl RefUnwindSafe for ViewDefinitionProperties
impl Send for ViewDefinitionProperties
impl Sync for ViewDefinitionProperties
impl Unpin for ViewDefinitionProperties
impl UnwindSafe for ViewDefinitionProperties
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