pub struct UpdateParams {
pub title: Option<String>,
pub description: Option<String>,
pub acceptance: Option<String>,
pub notes: Option<String>,
pub design: Option<String>,
pub status: Option<String>,
pub priority: Option<u8>,
pub assignee: Option<String>,
pub add_label: Option<String>,
pub remove_label: Option<String>,
pub decisions: Vec<String>,
pub resolve_decisions: Vec<String>,
}Expand description
Parameters for updating a unit.
Fields§
§title: Option<String>§description: Option<String>§acceptance: Option<String>§notes: Option<String>§design: Option<String>§status: Option<String>§priority: Option<u8>§assignee: Option<String>§add_label: Option<String>§remove_label: Option<String>§decisions: Vec<String>§resolve_decisions: Vec<String>Trait Implementations§
Source§impl Default for UpdateParams
impl Default for UpdateParams
Source§fn default() -> UpdateParams
fn default() -> UpdateParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateParams
impl RefUnwindSafe for UpdateParams
impl Send for UpdateParams
impl Sync for UpdateParams
impl Unpin for UpdateParams
impl UnsafeUnpin for UpdateParams
impl UnwindSafe for UpdateParams
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more