pub struct AzureStorageAccountEndpoints {
pub blob: Option<String>,
pub dfs: Option<String>,
pub file: Option<String>,
pub queue: Option<String>,
pub table: Option<String>,
pub web: Option<String>,
}Expand description
AzureStorageAccountEndpoints
JSON schema
{
"type": "object",
"properties": {
"blob": {
"type": [
"string",
"null"
]
},
"dfs": {
"type": [
"string",
"null"
]
},
"file": {
"type": [
"string",
"null"
]
},
"queue": {
"type": [
"string",
"null"
]
},
"table": {
"type": [
"string",
"null"
]
},
"web": {
"type": [
"string",
"null"
]
}
}
}Fields§
§blob: Option<String>§dfs: Option<String>§file: Option<String>§queue: Option<String>§table: Option<String>§web: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for AzureStorageAccountEndpoints
impl Clone for AzureStorageAccountEndpoints
Source§fn clone(&self) -> AzureStorageAccountEndpoints
fn clone(&self) -> AzureStorageAccountEndpoints
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 AzureStorageAccountEndpoints
impl Debug for AzureStorageAccountEndpoints
Source§impl<'de> Deserialize<'de> for AzureStorageAccountEndpoints
impl<'de> Deserialize<'de> for AzureStorageAccountEndpoints
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<&AzureStorageAccountEndpoints> for AzureStorageAccountEndpoints
impl From<&AzureStorageAccountEndpoints> for AzureStorageAccountEndpoints
Source§fn from(value: &AzureStorageAccountEndpoints) -> Self
fn from(value: &AzureStorageAccountEndpoints) -> Self
Converts to this type from the input type.
Source§impl From<AzureStorageAccountEndpoints> for AzureStorageAccountEndpoints
impl From<AzureStorageAccountEndpoints> for AzureStorageAccountEndpoints
Source§fn from(value: AzureStorageAccountEndpoints) -> Self
fn from(value: AzureStorageAccountEndpoints) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureStorageAccountEndpoints> for AzureStorageAccountEndpoints
impl TryFrom<AzureStorageAccountEndpoints> for AzureStorageAccountEndpoints
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AzureStorageAccountEndpoints,
) -> Result<Self, ConversionError>
fn try_from( value: AzureStorageAccountEndpoints, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureStorageAccountEndpoints
impl RefUnwindSafe for AzureStorageAccountEndpoints
impl Send for AzureStorageAccountEndpoints
impl Sync for AzureStorageAccountEndpoints
impl Unpin for AzureStorageAccountEndpoints
impl UnsafeUnpin for AzureStorageAccountEndpoints
impl UnwindSafe for AzureStorageAccountEndpoints
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