pub struct ResourcePathNode {
pub display_name: Option<String>,
pub id: Option<String>,
pub node_type: Option<String>,
}Expand description
A node within the resource path. Each node represents a resource within the resource hierarchy.
This type is not used in any activity, and only used as part of another schema.
Fields§
§display_name: Option<String>The display name of the resource this node represents.
id: Option<String>The ID of the resource this node represents.
node_type: Option<String>The type of resource this node represents.
Trait Implementations§
Source§impl Clone for ResourcePathNode
impl Clone for ResourcePathNode
Source§fn clone(&self) -> ResourcePathNode
fn clone(&self) -> ResourcePathNode
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 ResourcePathNode
impl Debug for ResourcePathNode
Source§impl Default for ResourcePathNode
impl Default for ResourcePathNode
Source§fn default() -> ResourcePathNode
fn default() -> ResourcePathNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourcePathNode
impl<'de> Deserialize<'de> for ResourcePathNode
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 ResourcePathNode
impl Serialize for ResourcePathNode
impl Part for ResourcePathNode
Auto Trait Implementations§
impl Freeze for ResourcePathNode
impl RefUnwindSafe for ResourcePathNode
impl Send for ResourcePathNode
impl Sync for ResourcePathNode
impl Unpin for ResourcePathNode
impl UnwindSafe for ResourcePathNode
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