pub struct VariableModel {
pub created: i64,
pub created_by: i64,
pub data: Vec<i32>,
pub description: String,
pub id: i64,
pub name: String,
pub parent_id: i64,
pub scope: Scope,
pub type: VariableType,
pub updated: i64,
pub version: i64,
}Fields§
§created: i64§created_by: i64§data: Vec<i32>§description: String§id: i64§name: String§parent_id: i64§scope: Scope§type: VariableType§updated: i64§version: i64Implementations§
Trait Implementations§
Source§impl Clone for VariableModel
impl Clone for VariableModel
Source§fn clone(&self) -> VariableModel
fn clone(&self) -> VariableModel
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 VariableModel
impl Debug for VariableModel
Source§impl Default for VariableModel
impl Default for VariableModel
Source§fn default() -> VariableModel
fn default() -> VariableModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VariableModel
impl<'de> Deserialize<'de> for VariableModel
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 VariableModel
impl PartialEq for VariableModel
Source§impl Serialize for VariableModel
impl Serialize for VariableModel
impl StructuralPartialEq for VariableModel
Auto Trait Implementations§
impl Freeze for VariableModel
impl RefUnwindSafe for VariableModel
impl Send for VariableModel
impl Sync for VariableModel
impl Unpin for VariableModel
impl UnwindSafe for VariableModel
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