pub struct ProjectSettingsInput {
pub is_public: Option<Option<bool>>,
pub name: Option<Option<String>>,
pub labels: Option<Option<Vec<String>>>,
}Expand description
ProjectSettingsInput : Client input to update project settings.
Fields§
§is_public: Option<Option<bool>>§name: Option<Option<String>>§labels: Option<Option<Vec<String>>>Implementations§
Source§impl ProjectSettingsInput
impl ProjectSettingsInput
Sourcepub fn new() -> ProjectSettingsInput
pub fn new() -> ProjectSettingsInput
Client input to update project settings.
Trait Implementations§
Source§impl Clone for ProjectSettingsInput
impl Clone for ProjectSettingsInput
Source§fn clone(&self) -> ProjectSettingsInput
fn clone(&self) -> ProjectSettingsInput
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 ProjectSettingsInput
impl Debug for ProjectSettingsInput
Source§impl Default for ProjectSettingsInput
impl Default for ProjectSettingsInput
Source§fn default() -> ProjectSettingsInput
fn default() -> ProjectSettingsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectSettingsInput
impl<'de> Deserialize<'de> for ProjectSettingsInput
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 ProjectSettingsInput
impl PartialEq for ProjectSettingsInput
Source§impl Serialize for ProjectSettingsInput
impl Serialize for ProjectSettingsInput
impl StructuralPartialEq for ProjectSettingsInput
Auto Trait Implementations§
impl Freeze for ProjectSettingsInput
impl RefUnwindSafe for ProjectSettingsInput
impl Send for ProjectSettingsInput
impl Sync for ProjectSettingsInput
impl Unpin for ProjectSettingsInput
impl UnwindSafe for ProjectSettingsInput
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