pub struct Story {
pub meta: EventMeta,
/* private fields */
}
Fields§
§meta: EventMeta
Implementations§
Methods from Deref<Target = StoryEventContent>§
Sourcepub fn slides(&self) -> &Vec<StorySlide>
pub fn slides(&self) -> &Vec<StorySlide>
A Story entry may have one or more slides of Story which are scrolled through horizontally
Trait Implementations§
Source§impl ActerModel for Story
impl ActerModel for Story
fn indizes(&self, _user_id: &UserId) -> Vec<String>
Source§fn capabilities(&self) -> &[Capability]
fn capabilities(&self) -> &[Capability]
activate to enable commenting support for this type of model
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 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<'de> Deserialize<'de> for Story
impl<'de> Deserialize<'de> for Story
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<StoryEventContent>> for Story
impl From<OriginalMessageLikeEvent<StoryEventContent>> for Story
Source§fn from(outer: OriginalMessageLikeEvent<StoryEventContent>) -> Self
fn from(outer: OriginalMessageLikeEvent<StoryEventContent>) -> Self
Converts to this type from the input type.
Source§impl From<Story> for AnyActerModel
impl From<Story> for AnyActerModel
Source§fn from(v: Story) -> AnyActerModel
fn from(v: Story) -> AnyActerModel
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Story
impl RefUnwindSafe for Story
impl Send for Story
impl Sync for Story
impl Unpin for Story
impl UnwindSafe for Story
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