pub struct DeleteImages {
pub session_id: Uuid,
pub session_file_ids: Vec<Uuid>,
/* private fields */
}
Fields§
§session_id: Uuid
§session_file_ids: Vec<Uuid>
Implementations§
Trait Implementations§
Source§impl Clone for DeleteImages
impl Clone for DeleteImages
Source§fn clone(&self) -> DeleteImages
fn clone(&self) -> DeleteImages
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 DeleteImages
impl Debug for DeleteImages
Source§impl Endpoint for DeleteImages
impl Endpoint for DeleteImages
type Query = ()
type Body = Vec<Uuid>
type Response = NoData
fn path(&self) -> Cow<'_, str>
fn method(&self) -> Method
fn require_auth(&self) -> bool
fn body(&self) -> Option<&Vec<Uuid>>
fn query(&self) -> Option<&Self::Query>
fn multipart(&self) -> Option<Form>
Auto Trait Implementations§
impl Freeze for DeleteImages
impl !RefUnwindSafe for DeleteImages
impl !Send for DeleteImages
impl !Sync for DeleteImages
impl Unpin for DeleteImages
impl !UnwindSafe for DeleteImages
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