pub struct Pulse {
pub id: String,
pub hash: String,
pub emitter_id: String,
/* private fields */
}
Fields§
§id: String
§hash: String
§emitter_id: String
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pulse
impl<'de> Deserialize<'de> for Pulse
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 Partial for Pulse
impl Partial for Pulse
Source§type Item = PartialPulse
type Item = PartialPulse
The type of the partial structure, that may have
Some
values.Source§fn apply_some(&mut self, partial: Self::Item) -> bool
fn apply_some(&mut self, partial: Self::Item) -> bool
Applies
Some
values from Partial::Item
to self
, returning true
when
updates were made, and false
when nothing was applied. Read moreimpl StructuralPartialEq for Pulse
Auto Trait Implementations§
impl Freeze for Pulse
impl RefUnwindSafe for Pulse
impl Send for Pulse
impl Sync for Pulse
impl Unpin for Pulse
impl UnwindSafe for Pulse
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