pub struct DeleteTopicData {
pub topic_id: Uuid,
}
Fields§
§topic_id: Uuid
The id of the topic to target.
Implementations§
Source§impl DeleteTopicData
impl DeleteTopicData
pub fn new(topic_id: Uuid) -> DeleteTopicData
Trait Implementations§
Source§impl Clone for DeleteTopicData
impl Clone for DeleteTopicData
Source§fn clone(&self) -> DeleteTopicData
fn clone(&self) -> DeleteTopicData
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 Debug for DeleteTopicData
impl Debug for DeleteTopicData
Source§impl Default for DeleteTopicData
impl Default for DeleteTopicData
Source§fn default() -> DeleteTopicData
fn default() -> DeleteTopicData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteTopicData
impl<'de> Deserialize<'de> for DeleteTopicData
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 DeleteTopicData
impl PartialEq for DeleteTopicData
Source§impl Serialize for DeleteTopicData
impl Serialize for DeleteTopicData
impl StructuralPartialEq for DeleteTopicData
Auto Trait Implementations§
impl Freeze for DeleteTopicData
impl RefUnwindSafe for DeleteTopicData
impl Send for DeleteTopicData
impl Sync for DeleteTopicData
impl Unpin for DeleteTopicData
impl UnwindSafe for DeleteTopicData
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