pub struct ManagedPropertyBundle {
pub managed_property: Option<Vec<ManagedProperty>>,
}Expand description
A bundle of managed properties.
This type is not used in any activity, and only used as part of another schema.
Fields§
§managed_property: Option<Vec<ManagedProperty>>The list of managed properties.
Trait Implementations§
Source§impl Clone for ManagedPropertyBundle
impl Clone for ManagedPropertyBundle
Source§fn clone(&self) -> ManagedPropertyBundle
fn clone(&self) -> ManagedPropertyBundle
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 ManagedPropertyBundle
impl Debug for ManagedPropertyBundle
Source§impl Default for ManagedPropertyBundle
impl Default for ManagedPropertyBundle
Source§fn default() -> ManagedPropertyBundle
fn default() -> ManagedPropertyBundle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ManagedPropertyBundle
impl<'de> Deserialize<'de> for ManagedPropertyBundle
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 Serialize for ManagedPropertyBundle
impl Serialize for ManagedPropertyBundle
impl Part for ManagedPropertyBundle
Auto Trait Implementations§
impl Freeze for ManagedPropertyBundle
impl RefUnwindSafe for ManagedPropertyBundle
impl Send for ManagedPropertyBundle
impl Sync for ManagedPropertyBundle
impl Unpin for ManagedPropertyBundle
impl UnwindSafe for ManagedPropertyBundle
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