pub struct UpdateGraphAttributes {
pub name: Option<String>,
pub description: Option<String>,
pub graph_type: Option<String>,
pub visibility: Option<String>,
pub tags: Option<Vec<String>>,
pub graph_data: Option<Value>,
}
Expand description
Attributes for updating a Graph
Fields§
§name: Option<String>
§description: Option<String>
§graph_type: Option<String>
§visibility: Option<String>
§graph_data: Option<Value>
Trait Implementations§
Source§impl Clone for UpdateGraphAttributes
impl Clone for UpdateGraphAttributes
Source§fn clone(&self) -> UpdateGraphAttributes
fn clone(&self) -> UpdateGraphAttributes
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 UpdateGraphAttributes
impl Debug for UpdateGraphAttributes
Source§impl Default for UpdateGraphAttributes
impl Default for UpdateGraphAttributes
Source§fn default() -> UpdateGraphAttributes
fn default() -> UpdateGraphAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateGraphAttributes
impl<'de> Deserialize<'de> for UpdateGraphAttributes
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 UpdateGraphAttributes
impl RefUnwindSafe for UpdateGraphAttributes
impl Send for UpdateGraphAttributes
impl Sync for UpdateGraphAttributes
impl Unpin for UpdateGraphAttributes
impl UnwindSafe for UpdateGraphAttributes
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