pub struct Nip98Event {
pub id: String,
pub pubkey: String,
pub created_at: u64,
pub kind: u64,
pub tags: Vec<Vec<String>>,
pub content: String,
pub sig: String,
}Fields§
§id: String§pubkey: String§created_at: u64§kind: u64§content: String§sig: StringTrait Implementations§
Source§impl Clone for Nip98Event
impl Clone for Nip98Event
Source§fn clone(&self) -> Nip98Event
fn clone(&self) -> Nip98Event
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Nip98Event
impl Debug for Nip98Event
Source§impl<'de> Deserialize<'de> for Nip98Event
impl<'de> Deserialize<'de> for Nip98Event
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 Nip98Event
impl RefUnwindSafe for Nip98Event
impl Send for Nip98Event
impl Sync for Nip98Event
impl Unpin for Nip98Event
impl UnsafeUnpin for Nip98Event
impl UnwindSafe for Nip98Event
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