pub struct LifecycleList {
pub lifecycles: Vec<LifecycleInfo>,
}Expand description
Lifecycle policy list.
Fields§
§lifecycles: Vec<LifecycleInfo>Lifecycle policies.
Trait Implementations§
Source§impl Clone for LifecycleList
impl Clone for LifecycleList
Source§fn clone(&self) -> LifecycleList
fn clone(&self) -> LifecycleList
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 Debug for LifecycleList
impl Debug for LifecycleList
Source§impl Default for LifecycleList
impl Default for LifecycleList
Source§fn default() -> LifecycleList
fn default() -> LifecycleList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LifecycleList
impl<'de> Deserialize<'de> for LifecycleList
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 LifecycleList
impl PartialEq for LifecycleList
Source§fn eq(&self, other: &LifecycleList) -> bool
fn eq(&self, other: &LifecycleList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LifecycleList
impl Serialize for LifecycleList
impl StructuralPartialEq for LifecycleList
Auto Trait Implementations§
impl Freeze for LifecycleList
impl RefUnwindSafe for LifecycleList
impl Send for LifecycleList
impl Sync for LifecycleList
impl Unpin for LifecycleList
impl UnsafeUnpin for LifecycleList
impl UnwindSafe for LifecycleList
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