pub struct DescriptorOperationReceivedParams {
pub descriptor_id: String,
pub type: DescriptorOperationType,
pub data: Option<Binary>,
}Expand description
Event for when a descriptor operation of |type| to the descriptor respresented by |descriptorId| happened. |data| is expected to exist when |type| is write. descriptorOperationReceived
Fields§
§descriptor_id: String§type: DescriptorOperationType§data: Option<Binary>Trait Implementations§
Source§impl Clone for DescriptorOperationReceivedParams
impl Clone for DescriptorOperationReceivedParams
Source§fn clone(&self) -> DescriptorOperationReceivedParams
fn clone(&self) -> DescriptorOperationReceivedParams
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<'de> Deserialize<'de> for DescriptorOperationReceivedParams
impl<'de> Deserialize<'de> for DescriptorOperationReceivedParams
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 DescriptorOperationReceivedParams
impl PartialEq for DescriptorOperationReceivedParams
Source§fn eq(&self, other: &DescriptorOperationReceivedParams) -> bool
fn eq(&self, other: &DescriptorOperationReceivedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescriptorOperationReceivedParams
Auto Trait Implementations§
impl Freeze for DescriptorOperationReceivedParams
impl RefUnwindSafe for DescriptorOperationReceivedParams
impl Send for DescriptorOperationReceivedParams
impl Sync for DescriptorOperationReceivedParams
impl Unpin for DescriptorOperationReceivedParams
impl UnsafeUnpin for DescriptorOperationReceivedParams
impl UnwindSafe for DescriptorOperationReceivedParams
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