pub struct RemoveChunkFromGroupReqPayload {
pub chunk_id: Uuid,
}Fields§
§chunk_id: UuidId of the chunk to remove from the group.
Implementations§
Source§impl RemoveChunkFromGroupReqPayload
impl RemoveChunkFromGroupReqPayload
pub fn new(chunk_id: Uuid) -> RemoveChunkFromGroupReqPayload
Trait Implementations§
Source§impl Clone for RemoveChunkFromGroupReqPayload
impl Clone for RemoveChunkFromGroupReqPayload
Source§fn clone(&self) -> RemoveChunkFromGroupReqPayload
fn clone(&self) -> RemoveChunkFromGroupReqPayload
Returns a duplicate 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 Default for RemoveChunkFromGroupReqPayload
impl Default for RemoveChunkFromGroupReqPayload
Source§fn default() -> RemoveChunkFromGroupReqPayload
fn default() -> RemoveChunkFromGroupReqPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoveChunkFromGroupReqPayload
impl<'de> Deserialize<'de> for RemoveChunkFromGroupReqPayload
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 PartialEq for RemoveChunkFromGroupReqPayload
impl PartialEq for RemoveChunkFromGroupReqPayload
Source§fn eq(&self, other: &RemoveChunkFromGroupReqPayload) -> bool
fn eq(&self, other: &RemoveChunkFromGroupReqPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoveChunkFromGroupReqPayload
Auto Trait Implementations§
impl Freeze for RemoveChunkFromGroupReqPayload
impl RefUnwindSafe for RemoveChunkFromGroupReqPayload
impl Send for RemoveChunkFromGroupReqPayload
impl Sync for RemoveChunkFromGroupReqPayload
impl Unpin for RemoveChunkFromGroupReqPayload
impl UnwindSafe for RemoveChunkFromGroupReqPayload
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