pub struct TentativeAccept {
pub kind: TentativeAcceptType,
pub tentative_accept_props: TentativeAcceptProperties,
pub object_props: ObjectProperties,
pub activity_props: ActivityProperties,
}Expand description
A specialization of Accept indicating that the acceptance is tentative.
Fields§
§kind: TentativeAcceptType§tentative_accept_props: TentativeAcceptPropertiesAdds all valid tentative_accept properties to this struct
object_props: ObjectPropertiesAdds all valid object properties to this struct
activity_props: ActivityPropertiesAdds all valid activity properties to this struct
Trait Implementations§
Source§impl ActivityExt for TentativeAccept
impl ActivityExt for TentativeAccept
fn props(&self) -> &ActivityProperties
fn props_mut(&mut self) -> &mut ActivityProperties
Source§impl Clone for TentativeAccept
impl Clone for TentativeAccept
Source§fn clone(&self) -> TentativeAccept
fn clone(&self) -> TentativeAccept
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 TentativeAccept
impl Debug for TentativeAccept
Source§impl Default for TentativeAccept
impl Default for TentativeAccept
Source§fn default() -> TentativeAccept
fn default() -> TentativeAccept
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TentativeAccept
impl<'de> Deserialize<'de> for TentativeAccept
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 ObjectExt for TentativeAccept
impl ObjectExt for TentativeAccept
fn props(&self) -> &ObjectProperties
fn props_mut(&mut self) -> &mut ObjectProperties
Source§impl Serialize for TentativeAccept
impl Serialize for TentativeAccept
impl Activity for TentativeAccept
impl Object for TentativeAccept
Auto Trait Implementations§
impl Freeze for TentativeAccept
impl RefUnwindSafe for TentativeAccept
impl Send for TentativeAccept
impl Sync for TentativeAccept
impl Unpin for TentativeAccept
impl UnwindSafe for TentativeAccept
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