pub struct UscList {
pub json: Option<bool>,
pub object_type: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub usc_name: String,
}Expand description
UscList : uscList is a command that lists the secrets of a Universal Secrets Connector
Fields§
§json: Option<bool>Set output format to JSON
object_type: Option<String>§token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
usc_name: StringName of the Universal Secrets Connector item
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UscList
impl<'de> Deserialize<'de> for UscList
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 UscList
Auto Trait Implementations§
impl Freeze for UscList
impl RefUnwindSafe for UscList
impl Send for UscList
impl Sync for UscList
impl Unpin for UscList
impl UnsafeUnpin for UscList
impl UnwindSafe for UscList
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