pub struct ConnectionStringBuilder<'a>(/* private fields */);
Implementations§
Source§impl<'a> ConnectionStringBuilder<'a>
impl<'a> ConnectionStringBuilder<'a>
pub fn new() -> Self
pub fn build(&self) -> String
pub fn account_name(&'a mut self, account_name: &'a str) -> &'a mut Self
pub fn account_key(&'a mut self, account_key: &'a str) -> &'a mut Self
pub fn sas(&'a mut self, sas: &'a str) -> &'a mut Self
pub fn endpoint_suffix(&'a mut self, endpoint_suffix: &'a str) -> &'a mut Self
pub fn default_endpoints_protocol( &'a mut self, default_endpoints_protocol: EndpointProtocol, ) -> &'a mut Self
pub fn use_development_storage( &'a mut self, use_development_storage: bool, ) -> &'a mut Self
pub fn development_storage_proxy_uri( &'a mut self, development_storage_proxy_uri: &'a str, ) -> &'a mut Self
pub fn blob_endpoint(&'a mut self, blob_endpoint: &'a str) -> &'a mut Self
pub fn blob_secondary_endpoint( &'a mut self, blob_secondary_endpoint: &'a str, ) -> &'a mut Self
pub fn table_endpoint(&'a mut self, table_endpoint: &'a str) -> &'a mut Self
pub fn table_secondary_endpoint( &'a mut self, table_secondary_endpoint: &'a str, ) -> &'a mut Self
pub fn queue_endpoint(&'a mut self, queue_endpoint: &'a str) -> &'a mut Self
pub fn queue_secondary_endpoint( &'a mut self, queue_secondary_endpoint: &'a str, ) -> &'a mut Self
pub fn file_endpoint(&'a mut self, file_endpoint: &'a str) -> &'a mut Self
pub fn file_secondary_endpoint( &'a mut self, file_secondary_endpoint: &'a str, ) -> &'a mut Self
Trait Implementations§
Source§impl<'a> Debug for ConnectionStringBuilder<'a>
impl<'a> Debug for ConnectionStringBuilder<'a>
Source§impl<'a> Default for ConnectionStringBuilder<'a>
impl<'a> Default for ConnectionStringBuilder<'a>
Source§fn default() -> ConnectionStringBuilder<'a>
fn default() -> ConnectionStringBuilder<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ConnectionStringBuilder<'a>
impl<'a> RefUnwindSafe for ConnectionStringBuilder<'a>
impl<'a> Send for ConnectionStringBuilder<'a>
impl<'a> Sync for ConnectionStringBuilder<'a>
impl<'a> Unpin for ConnectionStringBuilder<'a>
impl<'a> UnwindSafe for ConnectionStringBuilder<'a>
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