pub struct BlobLocation {
pub uri: String,
pub credentials: Option<String>,
}Expand description
Describes the access location for a blob.
Fields§
§uri: StringThe URI from which the blob is accessible from. For example, aml://abc for system assets or https://xyz for user assets or payload.
credentials: Option<String>Access credentials for the blob, if applicable (e.g. blob specified by storage account connection string + blob URI)
Implementations§
Trait Implementations§
Source§impl Clone for BlobLocation
impl Clone for BlobLocation
Source§fn clone(&self) -> BlobLocation
fn clone(&self) -> BlobLocation
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 BlobLocation
impl Debug for BlobLocation
Source§impl<'de> Deserialize<'de> for BlobLocation
impl<'de> Deserialize<'de> for BlobLocation
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 BlobLocation
impl PartialEq for BlobLocation
Source§impl Serialize for BlobLocation
impl Serialize for BlobLocation
impl StructuralPartialEq for BlobLocation
Auto Trait Implementations§
impl Freeze for BlobLocation
impl RefUnwindSafe for BlobLocation
impl Send for BlobLocation
impl Sync for BlobLocation
impl Unpin for BlobLocation
impl UnwindSafe for BlobLocation
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