Struct acter_core::events::tasks::TaskListUpdateBuilder
source · pub struct TaskListUpdateBuilder { /* private fields */ }
Expand description
Builder for TaskListUpdateEventContent
.
Implementations§
source§impl TaskListUpdateBuilder
impl TaskListUpdateBuilder
pub fn task_list<VALUE: Into<Update>>(&mut self, value: VALUE) -> &mut Self
pub fn name(&mut self, value: Option<String>) -> &mut Self
pub fn role<VALUE: Into<Option<Option<SpecialTaskListRole>>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn description<VALUE: Into<Option<Option<TextMessageEventContent>>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn display<VALUE: Into<Option<Option<Display>>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn sort_order(&mut self, value: Option<u32>) -> &mut Self
pub fn time_zone<VALUE: Into<Option<Option<Tz>>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn keywords<VALUE: Into<Option<Vec<String>>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn categories<VALUE: Into<Option<Vec<String>>>>( &mut self, value: VALUE, ) -> &mut Self
sourcepub fn build(
&self,
) -> Result<TaskListUpdateEventContent, TaskListUpdateBuilderError>
pub fn build( &self, ) -> Result<TaskListUpdateEventContent, TaskListUpdateBuilderError>
Trait Implementations§
source§impl Clone for TaskListUpdateBuilder
impl Clone for TaskListUpdateBuilder
source§fn clone(&self) -> TaskListUpdateBuilder
fn clone(&self) -> TaskListUpdateBuilder
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 TaskListUpdateBuilder
impl Debug for TaskListUpdateBuilder
Auto Trait Implementations§
impl Freeze for TaskListUpdateBuilder
impl RefUnwindSafe for TaskListUpdateBuilder
impl Send for TaskListUpdateBuilder
impl Sync for TaskListUpdateBuilder
impl Unpin for TaskListUpdateBuilder
impl UnwindSafe for TaskListUpdateBuilder
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