pub struct StoryUpdate { /* private fields */ }
Methods from Deref<Target = StoryUpdateEventContent>§
pub fn apply(&self, task: &mut StoryEventContent) -> Result<bool>
Trait Implementations§
Source§impl ActerModel for StoryUpdate
impl ActerModel for StoryUpdate
fn indizes(&self, _user_id: &UserId) -> Vec<String>
Source§async fn execute(self, store: &Store) -> Result<Vec<String>>
async fn execute(self, store: &Store) -> Result<Vec<String>>
The execution to run when this model is found.
Source§fn belongs_to(&self) -> Option<Vec<String>>
fn belongs_to(&self) -> Option<Vec<String>>
The models to inform about this model as it belongs to that
Source§fn capabilities(&self) -> &[Capability]
fn capabilities(&self) -> &[Capability]
activate to enable commenting support for this type of model
Source§fn transition(&mut self, model: &AnyActerModel) -> Result<bool>
fn transition(&mut self, model: &AnyActerModel) -> Result<bool>
handle transition from an external Item upon us
Source§impl Clone for StoryUpdate
impl Clone for StoryUpdate
Source§fn clone(&self) -> StoryUpdate
fn clone(&self) -> StoryUpdate
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 StoryUpdate
impl Debug for StoryUpdate
Source§impl Deref for StoryUpdate
impl Deref for StoryUpdate
Source§impl<'de> Deserialize<'de> for StoryUpdate
impl<'de> Deserialize<'de> for StoryUpdate
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 From<OriginalMessageLikeEvent<StoryUpdateEventContent>> for StoryUpdate
impl From<OriginalMessageLikeEvent<StoryUpdateEventContent>> for StoryUpdate
Source§fn from(outer: OriginalMessageLikeEvent<StoryUpdateEventContent>) -> Self
fn from(outer: OriginalMessageLikeEvent<StoryUpdateEventContent>) -> Self
Converts to this type from the input type.
Source§impl From<StoryUpdate> for AnyActerModel
impl From<StoryUpdate> for AnyActerModel
Source§fn from(v: StoryUpdate) -> AnyActerModel
fn from(v: StoryUpdate) -> AnyActerModel
Converts to this type from the input type.
Source§impl Serialize for StoryUpdate
impl Serialize for StoryUpdate
Source§impl TryInto<StoryUpdate> for AnyActerModel
impl TryInto<StoryUpdate> for AnyActerModel
Auto Trait Implementations§
impl Freeze for StoryUpdate
impl RefUnwindSafe for StoryUpdate
impl Send for StoryUpdate
impl Sync for StoryUpdate
impl Unpin for StoryUpdate
impl UnwindSafe for StoryUpdate
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§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