pub enum Update1 {
Update1OneOf(Box<Update1OneOf>),
Update1OneOf1(Box<Update1OneOf1>),
Update1OneOf2(Box<Update1OneOf2>),
}
Expand description
Update1 : The update that matches the filter in the request. The update that matches the filter in the request.
Variants§
Update1OneOf(Box<Update1OneOf>)
Update1OneOf1(Box<Update1OneOf1>)
Update1OneOf2(Box<Update1OneOf2>)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Update1
impl<'de> Deserialize<'de> for Update1
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
impl StructuralPartialEq for Update1
Auto Trait Implementations§
impl Freeze for Update1
impl RefUnwindSafe for Update1
impl Send for Update1
impl Sync for Update1
impl Unpin for Update1
impl UnwindSafe for Update1
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