pub struct RequestCacheNamesParams<'a> { /* private fields */ }Expand description
Requests cache names.
Implementations§
Source§impl<'a> RequestCacheNamesParams<'a>
impl<'a> RequestCacheNamesParams<'a>
Sourcepub fn builder() -> RequestCacheNamesParamsBuilder<'a>
pub fn builder() -> RequestCacheNamesParamsBuilder<'a>
Creates a builder for this type.
Sourcepub fn security_origin(&self) -> Option<&str>
pub fn security_origin(&self) -> Option<&str>
At least and at most one of securityOrigin, storageKey, storageBucket must be specified. Security origin.
Sourcepub fn storage_key(&self) -> Option<&str>
pub fn storage_key(&self) -> Option<&str>
Storage key.
Sourcepub fn storage_bucket(&self) -> Option<&StorageBucket<'a>>
pub fn storage_bucket(&self) -> Option<&StorageBucket<'a>>
Storage bucket. If not specified, it uses the default bucket.
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for RequestCacheNamesParams<'a>
impl<'a> CdpCommand<'a> for RequestCacheNamesParams<'a>
Source§impl<'a> Clone for RequestCacheNamesParams<'a>
impl<'a> Clone for RequestCacheNamesParams<'a>
Source§fn clone(&self) -> RequestCacheNamesParams<'a>
fn clone(&self) -> RequestCacheNamesParams<'a>
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<'a> Debug for RequestCacheNamesParams<'a>
impl<'a> Debug for RequestCacheNamesParams<'a>
Source§impl<'a> Default for RequestCacheNamesParams<'a>
impl<'a> Default for RequestCacheNamesParams<'a>
Source§fn default() -> RequestCacheNamesParams<'a>
fn default() -> RequestCacheNamesParams<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for RequestCacheNamesParams<'a>
impl<'de, 'a> Deserialize<'de> for RequestCacheNamesParams<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for RequestCacheNamesParams<'a>
impl<'a> RefUnwindSafe for RequestCacheNamesParams<'a>
impl<'a> Send for RequestCacheNamesParams<'a>
impl<'a> Sync for RequestCacheNamesParams<'a>
impl<'a> Unpin for RequestCacheNamesParams<'a>
impl<'a> UnsafeUnpin for RequestCacheNamesParams<'a>
impl<'a> UnwindSafe for RequestCacheNamesParams<'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