pub struct ListableVariable {Show 13 fields
pub workspace_id: String,
pub path: String,
pub value: Option<String>,
pub is_secret: bool,
pub description: Option<String>,
pub account: Option<i32>,
pub is_oauth: Option<bool>,
pub extra_perms: HashMap<String, bool>,
pub is_expired: Option<bool>,
pub refresh_error: Option<String>,
pub is_linked: Option<bool>,
pub is_refreshed: Option<bool>,
pub expires_at: Option<String>,
}
Fields§
§workspace_id: String
§path: String
§value: Option<String>
§is_secret: bool
§description: Option<String>
§account: Option<i32>
§is_oauth: Option<bool>
§extra_perms: HashMap<String, bool>
§is_expired: Option<bool>
§refresh_error: Option<String>
§is_linked: Option<bool>
§is_refreshed: Option<bool>
§expires_at: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for ListableVariable
impl Clone for ListableVariable
Source§fn clone(&self) -> ListableVariable
fn clone(&self) -> ListableVariable
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 ListableVariable
impl Debug for ListableVariable
Source§impl Default for ListableVariable
impl Default for ListableVariable
Source§fn default() -> ListableVariable
fn default() -> ListableVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListableVariable
impl<'de> Deserialize<'de> for ListableVariable
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 ListableVariable
impl PartialEq for ListableVariable
Source§impl Serialize for ListableVariable
impl Serialize for ListableVariable
impl StructuralPartialEq for ListableVariable
Auto Trait Implementations§
impl Freeze for ListableVariable
impl RefUnwindSafe for ListableVariable
impl Send for ListableVariable
impl Sync for ListableVariable
impl Unpin for ListableVariable
impl UnwindSafe for ListableVariable
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