pub struct CacheBehaviors {
pub items: Option<Vec<CacheBehavior>>,
pub quantity: i64,
}
Expand description
A complex type that contains zero or more CacheBehavior
elements.
Fields§
§items: Option<Vec<CacheBehavior>>
Optional: A complex type that contains cache behaviors for this distribution. If Quantity
is 0
, you can omit Items
.
quantity: i64
The number of cache behaviors for this distribution.
Trait Implementations§
Source§impl Clone for CacheBehaviors
impl Clone for CacheBehaviors
Source§fn clone(&self) -> CacheBehaviors
fn clone(&self) -> CacheBehaviors
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 CacheBehaviors
impl Debug for CacheBehaviors
Source§impl Default for CacheBehaviors
impl Default for CacheBehaviors
Source§fn default() -> CacheBehaviors
fn default() -> CacheBehaviors
Returns the “default value” for a type. Read more
Source§impl PartialEq for CacheBehaviors
impl PartialEq for CacheBehaviors
impl StructuralPartialEq for CacheBehaviors
Auto Trait Implementations§
impl Freeze for CacheBehaviors
impl RefUnwindSafe for CacheBehaviors
impl Send for CacheBehaviors
impl Sync for CacheBehaviors
impl Unpin for CacheBehaviors
impl UnwindSafe for CacheBehaviors
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