pub struct Variable {
pub id: String,
pub created_at: String,
pub updated_at: String,
pub key: String,
pub value: String,
pub resource_type: String,
pub resource_id: String,
}Expand description
Variable
Fields§
§id: StringVariable ID.
created_at: StringVariable creation date in ISO 8601 format.
updated_at: StringVariable update date in ISO 8601 format.
key: StringVariable key.
value: StringVariable value.
resource_type: StringService to which the variable belongs. Possible values are "project", "function"
resource_id: StringID of resource to which the variable belongs. If resourceType is "project", it is empty. If resourceType is "function", it is ID of the function.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Variable
impl<'de> Deserialize<'de> for Variable
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
impl StructuralPartialEq for Variable
Auto Trait Implementations§
impl Freeze for Variable
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnwindSafe for Variable
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