pub struct StaticTile {
pub data: HashMap<String, Value>,
pub nodegroup_id: String,
pub resourceinstance_id: String,
pub tileid: Option<String>,
pub parenttile_id: Option<String>,
pub provisionaledits: Option<Vec<Value>>,
pub sortorder: Option<i32>,
}Expand description
A tile containing data for a nodegroup instance
Fields§
§data: HashMap<String, Value>§nodegroup_id: String§resourceinstance_id: String§tileid: Option<String>§parenttile_id: Option<String>§provisionaledits: Option<Vec<Value>>§sortorder: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for StaticTile
impl Clone for StaticTile
Source§fn clone(&self) -> StaticTile
fn clone(&self) -> StaticTile
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 StaticTile
impl Debug for StaticTile
Source§impl<'de> Deserialize<'de> for StaticTile
impl<'de> Deserialize<'de> for StaticTile
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
Auto Trait Implementations§
impl Freeze for StaticTile
impl RefUnwindSafe for StaticTile
impl Send for StaticTile
impl Sync for StaticTile
impl Unpin for StaticTile
impl UnsafeUnpin for StaticTile
impl UnwindSafe for StaticTile
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