pub struct ContainerForProjectFeatures {
pub features: Option<Vec<ProjectFeature>>,
}Expand description
ContainerForProjectFeatures : The list of features on a project.
Fields§
§features: Option<Vec<ProjectFeature>>The project features.
Implementations§
Source§impl ContainerForProjectFeatures
impl ContainerForProjectFeatures
Sourcepub fn new() -> ContainerForProjectFeatures
pub fn new() -> ContainerForProjectFeatures
The list of features on a project.
Trait Implementations§
Source§impl Clone for ContainerForProjectFeatures
impl Clone for ContainerForProjectFeatures
Source§fn clone(&self) -> ContainerForProjectFeatures
fn clone(&self) -> ContainerForProjectFeatures
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 ContainerForProjectFeatures
impl Debug for ContainerForProjectFeatures
Source§impl Default for ContainerForProjectFeatures
impl Default for ContainerForProjectFeatures
Source§fn default() -> ContainerForProjectFeatures
fn default() -> ContainerForProjectFeatures
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerForProjectFeatures
impl<'de> Deserialize<'de> for ContainerForProjectFeatures
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
impl StructuralPartialEq for ContainerForProjectFeatures
Auto Trait Implementations§
impl Freeze for ContainerForProjectFeatures
impl RefUnwindSafe for ContainerForProjectFeatures
impl Send for ContainerForProjectFeatures
impl Sync for ContainerForProjectFeatures
impl Unpin for ContainerForProjectFeatures
impl UnwindSafe for ContainerForProjectFeatures
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