pub struct ActionsVariable {
pub name: String,
pub value: String,
pub created_at: String,
pub updated_at: String,
}
Fields§
§name: String
The name of the variable.
value: String
The value of the variable.
created_at: String
The date and time at which the variable was created, in ISO 8601 format’:’ YYYY-MM-DDTHH:MM:SSZ.
updated_at: String
The date and time at which the variable was last updated, in ISO 8601 format’:’ YYYY-MM-DDTHH:MM:SSZ.
Implementations§
Trait Implementations§
Source§impl Clone for ActionsVariable
impl Clone for ActionsVariable
Source§fn clone(&self) -> ActionsVariable
fn clone(&self) -> ActionsVariable
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 ActionsVariable
impl Debug for ActionsVariable
Source§impl Default for ActionsVariable
impl Default for ActionsVariable
Source§fn default() -> ActionsVariable
fn default() -> ActionsVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsVariable
impl<'de> Deserialize<'de> for ActionsVariable
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 ActionsVariable
impl PartialEq for ActionsVariable
Source§impl Serialize for ActionsVariable
impl Serialize for ActionsVariable
impl StructuralPartialEq for ActionsVariable
Auto Trait Implementations§
impl Freeze for ActionsVariable
impl RefUnwindSafe for ActionsVariable
impl Send for ActionsVariable
impl Sync for ActionsVariable
impl Unpin for ActionsVariable
impl UnwindSafe for ActionsVariable
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