pub struct SecretsScopeQuery {
pub environment: Option<String>,
pub scope: Option<String>,
}Expand description
Query for create / list / get / delete endpoints.
Fields§
§environment: Option<String>Environment id whose namespace to operate in. Mutually exclusive
with scope.
scope: Option<String>Explicit scope string (legacy). Mutually exclusive with environment.
Trait Implementations§
Source§impl Debug for SecretsScopeQuery
impl Debug for SecretsScopeQuery
Source§impl Default for SecretsScopeQuery
impl Default for SecretsScopeQuery
Source§fn default() -> SecretsScopeQuery
fn default() -> SecretsScopeQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretsScopeQuery
impl<'de> Deserialize<'de> for SecretsScopeQuery
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
Auto Trait Implementations§
impl Freeze for SecretsScopeQuery
impl RefUnwindSafe for SecretsScopeQuery
impl Send for SecretsScopeQuery
impl Sync for SecretsScopeQuery
impl Unpin for SecretsScopeQuery
impl UnsafeUnpin for SecretsScopeQuery
impl UnwindSafe for SecretsScopeQuery
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