pub struct DataControllerResource {
pub tracked_resource: TrackedResource,
pub extended_location: Option<ExtendedLocation>,
pub properties: DataControllerProperties,
}Expand description
Data controller resource
Fields§
§tracked_resource: TrackedResource§extended_location: Option<ExtendedLocation>The complex type of the extended location.
properties: DataControllerPropertiesThe data controller properties.
Implementations§
Source§impl DataControllerResource
impl DataControllerResource
pub fn new( tracked_resource: TrackedResource, properties: DataControllerProperties, ) -> Self
Trait Implementations§
Source§impl Clone for DataControllerResource
impl Clone for DataControllerResource
Source§fn clone(&self) -> DataControllerResource
fn clone(&self) -> DataControllerResource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataControllerResource
impl Debug for DataControllerResource
Source§impl<'de> Deserialize<'de> for DataControllerResource
impl<'de> Deserialize<'de> for DataControllerResource
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 DataControllerResource
impl PartialEq for DataControllerResource
Source§fn eq(&self, other: &DataControllerResource) -> bool
fn eq(&self, other: &DataControllerResource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataControllerResource
impl Serialize for DataControllerResource
impl StructuralPartialEq for DataControllerResource
Auto Trait Implementations§
impl Freeze for DataControllerResource
impl RefUnwindSafe for DataControllerResource
impl Send for DataControllerResource
impl Sync for DataControllerResource
impl Unpin for DataControllerResource
impl UnsafeUnpin for DataControllerResource
impl UnwindSafe for DataControllerResource
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