pub enum RemoteAzureCredentials {
AccessToken(String),
}Expand description
The only Azure credential form remote binding resolution can return.
JSON schema
{
"description": "The only Azure credential form remote binding resolution can return.",
"oneOf": [
{
"description": "OAuth bearer token for `https://storage.azure.com/.default`.",
"type": "object",
"required": [
"token",
"type"
],
"properties": {
"token": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"accessToken"
]
}
}
}
]
}Variants§
Trait Implementations§
Source§impl Clone for RemoteAzureCredentials
impl Clone for RemoteAzureCredentials
Source§fn clone(&self) -> RemoteAzureCredentials
fn clone(&self) -> RemoteAzureCredentials
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemoteAzureCredentials
impl Debug for RemoteAzureCredentials
Source§impl<'de> Deserialize<'de> for RemoteAzureCredentials
impl<'de> Deserialize<'de> for RemoteAzureCredentials
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 From<&RemoteAzureCredentials> for RemoteAzureCredentials
impl From<&RemoteAzureCredentials> for RemoteAzureCredentials
Source§fn from(value: &RemoteAzureCredentials) -> Self
fn from(value: &RemoteAzureCredentials) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RemoteAzureCredentials
impl RefUnwindSafe for RemoteAzureCredentials
impl Send for RemoteAzureCredentials
impl Sync for RemoteAzureCredentials
impl Unpin for RemoteAzureCredentials
impl UnsafeUnpin for RemoteAzureCredentials
impl UnwindSafe for RemoteAzureCredentials
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