Struct acter_core::events::tasks::TaskUpdateBuilder
source · pub struct TaskUpdateBuilder { /* private fields */ }
Expand description
Builder for TaskUpdateEventContent
.
Implementations§
source§impl TaskUpdateBuilder
impl TaskUpdateBuilder
pub fn task<VALUE: Into<Update>>(&mut self, value: VALUE) -> &mut Self
sourcepub fn description(
&mut self,
value: Option<Option<TextMessageEventContent>>,
) -> &mut Self
pub fn description( &mut self, value: Option<Option<TextMessageEventContent>>, ) -> &mut Self
Every tasks belongs to a tasklist Further information describing the task
sourcepub fn utc_due_time_of_day(&mut self, value: Option<Option<i32>>) -> &mut Self
pub fn utc_due_time_of_day(&mut self, value: Option<Option<i32>>) -> &mut Self
Specific time on the day is this task due
sourcepub fn utc_start(&mut self, value: Option<Option<UtcDateTime>>) -> &mut Self
pub fn utc_start(&mut self, value: Option<Option<UtcDateTime>>) -> &mut Self
When was this task started?
sourcepub fn progress_percent(&mut self, value: Option<Option<u8>>) -> &mut Self
pub fn progress_percent(&mut self, value: Option<Option<u8>>) -> &mut Self
How far along is this task in percent (everything > 100: = 100)
sourcepub fn sort_order(&mut self, value: Option<u32>) -> &mut Self
pub fn sort_order(&mut self, value: Option<u32>) -> &mut Self
Sort order within the TaskList
pub fn keywords(&mut self, value: Option<Vec<String>>) -> &mut Self
pub fn categories(&mut self, value: Option<Vec<String>>) -> &mut Self
sourcepub fn build(&self) -> Result<TaskUpdateEventContent, TaskUpdateBuilderError>
pub fn build(&self) -> Result<TaskUpdateEventContent, TaskUpdateBuilderError>
Trait Implementations§
source§impl Clone for TaskUpdateBuilder
impl Clone for TaskUpdateBuilder
source§fn clone(&self) -> TaskUpdateBuilder
fn clone(&self) -> TaskUpdateBuilder
Returns a copy 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 TaskUpdateBuilder
impl Debug for TaskUpdateBuilder
Auto Trait Implementations§
impl Freeze for TaskUpdateBuilder
impl RefUnwindSafe for TaskUpdateBuilder
impl Send for TaskUpdateBuilder
impl Sync for TaskUpdateBuilder
impl Unpin for TaskUpdateBuilder
impl UnwindSafe for TaskUpdateBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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