pub struct ComponentPropertyBoundVariables {
pub value: Option<Box<VariableAlias>>,
}
Expand description
ComponentPropertyBoundVariables : The variables bound to a particular field on this component property
Fields§
§value: Option<Box<VariableAlias>>
Implementations§
Source§impl ComponentPropertyBoundVariables
impl ComponentPropertyBoundVariables
Sourcepub fn new() -> ComponentPropertyBoundVariables
pub fn new() -> ComponentPropertyBoundVariables
The variables bound to a particular field on this component property
Trait Implementations§
Source§impl Clone for ComponentPropertyBoundVariables
impl Clone for ComponentPropertyBoundVariables
Source§fn clone(&self) -> ComponentPropertyBoundVariables
fn clone(&self) -> ComponentPropertyBoundVariables
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 Default for ComponentPropertyBoundVariables
impl Default for ComponentPropertyBoundVariables
Source§fn default() -> ComponentPropertyBoundVariables
fn default() -> ComponentPropertyBoundVariables
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ComponentPropertyBoundVariables
impl<'de> Deserialize<'de> for ComponentPropertyBoundVariables
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 PartialEq for ComponentPropertyBoundVariables
impl PartialEq for ComponentPropertyBoundVariables
Source§fn eq(&self, other: &ComponentPropertyBoundVariables) -> bool
fn eq(&self, other: &ComponentPropertyBoundVariables) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ComponentPropertyBoundVariables
Auto Trait Implementations§
impl Freeze for ComponentPropertyBoundVariables
impl RefUnwindSafe for ComponentPropertyBoundVariables
impl Send for ComponentPropertyBoundVariables
impl Sync for ComponentPropertyBoundVariables
impl Unpin for ComponentPropertyBoundVariables
impl UnwindSafe for ComponentPropertyBoundVariables
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