pub enum CreateViewPropertyOrConnectionDefinition {
CreateViewProperty(CreateViewProperty),
ConnectionDefinition(ConnectionDefinition),
}Expand description
New view property or definition of a connection.
Variants§
CreateViewProperty(CreateViewProperty)
New view property referencing a container.
ConnectionDefinition(ConnectionDefinition)
Connection referencing a view.
Trait Implementations§
Source§impl Clone for CreateViewPropertyOrConnectionDefinition
impl Clone for CreateViewPropertyOrConnectionDefinition
Source§fn clone(&self) -> CreateViewPropertyOrConnectionDefinition
fn clone(&self) -> CreateViewPropertyOrConnectionDefinition
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<'de> Deserialize<'de> for CreateViewPropertyOrConnectionDefinition
impl<'de> Deserialize<'de> for CreateViewPropertyOrConnectionDefinition
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 CreateViewPropertyOrConnectionDefinition
impl RefUnwindSafe for CreateViewPropertyOrConnectionDefinition
impl Send for CreateViewPropertyOrConnectionDefinition
impl Sync for CreateViewPropertyOrConnectionDefinition
impl Unpin for CreateViewPropertyOrConnectionDefinition
impl UnwindSafe for CreateViewPropertyOrConnectionDefinition
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