pub struct DeleteGoalResponse {
pub deleted: bool,
pub goal_id: String,
pub references_deleted: Option<u64>,
}Expand description
Response from deleting a saved goal.
Fields§
§deleted: bool§goal_id: String§references_deleted: Option<u64>Trait Implementations§
Source§impl Clone for DeleteGoalResponse
impl Clone for DeleteGoalResponse
Source§fn clone(&self) -> DeleteGoalResponse
fn clone(&self) -> DeleteGoalResponse
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 DeleteGoalResponse
impl Debug for DeleteGoalResponse
Source§impl<'de> Deserialize<'de> for DeleteGoalResponse
impl<'de> Deserialize<'de> for DeleteGoalResponse
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
Auto Trait Implementations§
impl Freeze for DeleteGoalResponse
impl RefUnwindSafe for DeleteGoalResponse
impl Send for DeleteGoalResponse
impl Sync for DeleteGoalResponse
impl Unpin for DeleteGoalResponse
impl UnsafeUnpin for DeleteGoalResponse
impl UnwindSafe for DeleteGoalResponse
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