pub struct SetOptions {
pub title: Option<String>,
pub description: Option<String>,
pub parent: Option<String>,
pub enabled: Option<bool>,
pub inheritable: Option<bool>,
}Expand description
project set flags — ONLY the Some fields ride the modify body
(absent flag = don’t touch — Pitfall 5’s modify half).
Fields§
§title: Option<String>Display title.
description: Option<String>Long description.
parent: Option<String>Parent project — the inheritance move.
enabled: Option<bool>Whether the project runs.
inheritable: Option<bool>Whether this project may serve as a parent.
Trait Implementations§
Source§impl Clone for SetOptions
impl Clone for SetOptions
Source§fn clone(&self) -> SetOptions
fn clone(&self) -> SetOptions
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 SetOptions
impl Debug for SetOptions
Source§impl Default for SetOptions
impl Default for SetOptions
Source§fn default() -> SetOptions
fn default() -> SetOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetOptions
impl RefUnwindSafe for SetOptions
impl Send for SetOptions
impl Sync for SetOptions
impl Unpin for SetOptions
impl UnsafeUnpin for SetOptions
impl UnwindSafe for SetOptions
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