pub struct UpdateNwcClientRequest {
pub client_nostr_pk: NostrPk,
pub label: Option<String>,
}Expand description
Request to update an existing NWC client.
Fields§
§client_nostr_pk: NostrPkThe client public key identifying the client to update.
label: Option<String>Updated human-readable label for this client. If None, the label is
not updated.
Trait Implementations§
Source§impl Clone for UpdateNwcClientRequest
impl Clone for UpdateNwcClientRequest
Source§fn clone(&self) -> UpdateNwcClientRequest
fn clone(&self) -> UpdateNwcClientRequest
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 Debug for UpdateNwcClientRequest
impl Debug for UpdateNwcClientRequest
Source§impl<'de> Deserialize<'de> for UpdateNwcClientRequest
impl<'de> Deserialize<'de> for UpdateNwcClientRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateNwcClientRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateNwcClientRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateNwcClientRequest
impl PartialEq for UpdateNwcClientRequest
Source§impl Serialize for UpdateNwcClientRequest
impl Serialize for UpdateNwcClientRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for UpdateNwcClientRequest
Auto Trait Implementations§
impl Freeze for UpdateNwcClientRequest
impl RefUnwindSafe for UpdateNwcClientRequest
impl Send for UpdateNwcClientRequest
impl Sync for UpdateNwcClientRequest
impl Unpin for UpdateNwcClientRequest
impl UnsafeUnpin for UpdateNwcClientRequest
impl UnwindSafe for UpdateNwcClientRequest
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