pub struct AccountSharedAccessSignature { /* private fields */ }
Implementations§
pub fn new( account: String, key: Secret, resource: AccountSasResource, resource_type: AccountSasResourceType, expiry: OffsetDateTime, permissions: AccountSasPermissions, ) -> Self
pub fn version<P: Into<AccountSasVersion>>(self, version: P) -> Self
pub fn start<P: Into<OffsetDateTime>>(self, start: P) -> Self
pub fn ip<P: Into<String>>(self, ip: P) -> Self
pub fn protocol<P: Into<SasProtocol>>(self, protocol: P) -> Self
Trait Implementations§
source§fn eq(&self, other: &AccountSharedAccessSignature) -> bool
fn eq(&self, other: &AccountSharedAccessSignature) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Auto Trait Implementations§
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.