pub struct ContentDelta {
pub delta_type: String,
pub text: Option<String>,
pub partial_json: Option<String>,
}
Fields§
§delta_type: String
§text: Option<String>
§partial_json: Option<String>
Trait Implementations§
Source§impl Clone for ContentDelta
impl Clone for ContentDelta
Source§fn clone(&self) -> ContentDelta
fn clone(&self) -> ContentDelta
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ContentDelta
impl Debug for ContentDelta
Source§impl<'de> Deserialize<'de> for ContentDelta
impl<'de> Deserialize<'de> for ContentDelta
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 ContentDelta
impl RefUnwindSafe for ContentDelta
impl Send for ContentDelta
impl Sync for ContentDelta
impl Unpin for ContentDelta
impl UnwindSafe for ContentDelta
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