Enum backend::model::dto::actions::ActionType

source ·
pub enum ActionType {
Show 29 variants CreateLayer(LayerDto), DeleteLayer(Uuid), RestoreDrawingLayer(RestoreDrawingLayerActionPayload), RenameLayer(LayerRenameDto), ReorderLayers(Vec<Uuid>), CreatePlanting(Vec<PlantingDto>), DeletePlanting(Vec<DeletePlantingActionPayload>), MovePlanting(Vec<MovePlantingActionPayload>), TransformPlanting(Vec<TransformPlantingActionPayload>), UpdatePlantingAddDate(Vec<UpdateAddDateActionPayload>), UpdatePlantingRemoveDate(Vec<UpdateRemoveDateActionPayload>), UpdatePlantingNotes(Vec<UpdatePlantingNotesActionPayload>), CreateShading(Vec<CreateShadingActionPayload>), DeleteShading(Vec<DeleteShadingActionPayload>), UpdateShading(Vec<UpdateShadingActionPayload>), UpdateShadingAddDate(Vec<UpdateShadingAddDateActionPayload>), UpdateShadingRemoveDate(Vec<UpdateShadingRemoveDateActionPayload>), UpdateShadingNotes(Vec<UpdateShadingNotesActionPayload>), CreateBaseLayerImage(CreateBaseLayerImageActionPayload), UpdateBaseLayerImage(UpdateBaseLayerImageActionPayload), DeleteBaseLayerImage(DeleteBaseLayerImageActionPayload), UpdateMapGeometry(UpdateMapGeometryActionPayload), UpdatePlantingAdditionalName(UpdatePlantingAdditionalNamePayload), CreateDrawing(Vec<DrawingDto>), DeleteDrawing(Vec<Uuid>), UpdateDrawing(Vec<DrawingDto>), UpdateDrawingAddDate(Vec<DrawingDto>), UpdateDrawingRemoveDate(Vec<DrawingDto>), UpdateDrawingNotes(Vec<UpdateDrawingNotesActionPayload>),
}
Expand description

An enum representing all the actions that can be broadcasted via crate::sse::broadcaster::Broadcaster.

Variants§

§

CreateLayer(LayerDto)

An action used to broadcast creation of a layer.

§

DeleteLayer(Uuid)

An action used to broadcast soft-deletion of a layer. Deleted layers can be restored.

§

RestoreDrawingLayer(RestoreDrawingLayerActionPayload)

An action used to broadcast restoration of a deleted layer. Restore is only supported for drawing layers

§

RenameLayer(LayerRenameDto)

An action used to broadcast the renaming of a layer.

§

ReorderLayers(Vec<Uuid>)

An action used to broadcast the reordering of multiple layers.

§

CreatePlanting(Vec<PlantingDto>)

An action used to broadcast creation of plantings.

§

DeletePlanting(Vec<DeletePlantingActionPayload>)

An action used to broadcast deletion of plantings.

§

MovePlanting(Vec<MovePlantingActionPayload>)

An action used to broadcast movement of plantings.

§

TransformPlanting(Vec<TransformPlantingActionPayload>)

An action used to broadcast transformation of plantings.

§

UpdatePlantingAddDate(Vec<UpdateAddDateActionPayload>)

An action used to update the add_date of plantings.

§

UpdatePlantingRemoveDate(Vec<UpdateRemoveDateActionPayload>)

An action used to update the remove_date of plantings.

§

UpdatePlantingNotes(Vec<UpdatePlantingNotesActionPayload>)

An action used to broadcast updating Markdown notes of plantings.

§

CreateShading(Vec<CreateShadingActionPayload>)

An action used to broadcast creation of shadings.

§

DeleteShading(Vec<DeleteShadingActionPayload>)

An action used to broadcast deletion of shadings.

§

UpdateShading(Vec<UpdateShadingActionPayload>)

An action used to broadcast change of shadings.

§

UpdateShadingAddDate(Vec<UpdateShadingAddDateActionPayload>)

An action used to update add_date of shadings.

§

UpdateShadingRemoveDate(Vec<UpdateShadingRemoveDateActionPayload>)

An action used to update remove_date of shadings.

§

UpdateShadingNotes(Vec<UpdateShadingNotesActionPayload>)

An actin used to update notes of shadings.

§

CreateBaseLayerImage(CreateBaseLayerImageActionPayload)

An action used to broadcast creation of a baseLayerImage.

§

UpdateBaseLayerImage(UpdateBaseLayerImageActionPayload)

An action used to broadcast update of a baseLayerImage.

§

DeleteBaseLayerImage(DeleteBaseLayerImageActionPayload)

An action used to broadcast deletion of a baseLayerImage.

§

UpdateMapGeometry(UpdateMapGeometryActionPayload)

An action used to broadcast an update to the map geometry.

§

UpdatePlantingAdditionalName(UpdatePlantingAdditionalNamePayload)

An action used to update additional_name of one planting.

§

CreateDrawing(Vec<DrawingDto>)

An action used to broadcast creation of new drawings.

§

DeleteDrawing(Vec<Uuid>)

An action used to broadcast deletion of an existing drawings.

§

UpdateDrawing(Vec<DrawingDto>)

An action used to broadcast arbitrary updates of existing drawings.

§

UpdateDrawingAddDate(Vec<DrawingDto>)

An action used to broadcast the update of add_date of existing drawings.

§

UpdateDrawingRemoveDate(Vec<DrawingDto>)

An action used to broadcast the update of remove_date of existing drawings.

§

UpdateDrawingNotes(Vec<UpdateDrawingNotesActionPayload>)

An action used to broadcast the update of notes of existing drawings.

Trait Implementations§

source§

impl Clone for ActionType

source§

fn clone(&self) -> ActionType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ActionType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Serialize for ActionType

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> Paginate for T

source§

fn paginate(self, page: Option<i32>) -> PaginatedQuery<T>

Return a paginated version of a query for a specific page number.
source§

impl<T, Conn> RunQueryDsl<Conn> for T

source§

fn execute<'conn, 'query>( self, conn: &'conn mut Conn, ) -> <Conn as AsyncConnection>::ExecuteFuture<'conn, 'query>
where Conn: AsyncConnection + Send, Self: ExecuteDsl<Conn> + 'query,

Executes the given command, returning the number of rows affected. Read more
source§

fn load<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> AndThen<Self::LoadFuture<'conn>, TryCollect<Self::Stream<'conn>, Vec<U>>, fn(_: Self::Stream<'conn>) -> TryCollect<Self::Stream<'conn>, Vec<U>>>
where U: Send, Conn: AsyncConnection, Self: LoadQuery<'query, Conn, U> + 'query,

Executes the given query, returning a Vec with the returned rows. Read more
source§

fn load_stream<'conn, 'query, U>( self, conn: &'conn mut Conn, ) -> Self::LoadFuture<'conn>
where Conn: AsyncConnection, U: 'conn, Self: LoadQuery<'query, Conn, U> + 'query,

Executes the given query, returning a Stream with the returned rows. Read more
source§

fn get_result<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> AndThen<Self::LoadFuture<'conn>, Map<StreamFuture<Pin<Box<Self::Stream<'conn>>>>, fn(_: (Option<Result<U, Error>>, Pin<Box<Self::Stream<'conn>>>)) -> Result<U, Error>>, fn(_: Self::Stream<'conn>) -> Map<StreamFuture<Pin<Box<Self::Stream<'conn>>>>, fn(_: (Option<Result<U, Error>>, Pin<Box<Self::Stream<'conn>>>)) -> Result<U, Error>>>
where U: Send + 'conn, Conn: AsyncConnection, Self: LoadQuery<'query, Conn, U> + 'query,

Runs the command, and returns the affected row. Read more
source§

fn get_results<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> AndThen<Self::LoadFuture<'conn>, TryCollect<Self::Stream<'conn>, Vec<U>>, fn(_: Self::Stream<'conn>) -> TryCollect<Self::Stream<'conn>, Vec<U>>>
where U: Send, Conn: AsyncConnection, Self: LoadQuery<'query, Conn, U> + 'query,

Runs the command, returning an Vec with the affected rows. Read more
source§

fn first<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> AndThen<<Self::Output as LoadQuery<'query, Conn, U>>::LoadFuture<'conn>, Map<StreamFuture<Pin<Box<<Self::Output as LoadQuery<'query, Conn, U>>::Stream<'conn>>>>, fn(_: (Option<Result<U, Error>>, Pin<Box<<Self::Output as LoadQuery<'query, Conn, U>>::Stream<'conn>>>)) -> Result<U, Error>>, fn(_: <Self::Output as LoadQuery<'query, Conn, U>>::Stream<'conn>) -> Map<StreamFuture<Pin<Box<<Self::Output as LoadQuery<'query, Conn, U>>::Stream<'conn>>>>, fn(_: (Option<Result<U, Error>>, Pin<Box<<Self::Output as LoadQuery<'query, Conn, U>>::Stream<'conn>>>)) -> Result<U, Error>>>
where U: Send + 'conn, Conn: AsyncConnection, Self: LimitDsl, Self::Output: LoadQuery<'query, Conn, U> + Send + 'query,

Attempts to load a single record. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more