pub struct UpdateNwcClientResponse {
pub client_info: NwcClientInfo,
}Expand description
Response for updating an existing NWC client.
NOTE: this response does not contain the connection string.
Fields§
§client_info: NwcClientInfoInformation about the updated NWC client.
Trait Implementations§
Source§impl Clone for UpdateNwcClientResponse
impl Clone for UpdateNwcClientResponse
Source§fn clone(&self) -> UpdateNwcClientResponse
fn clone(&self) -> UpdateNwcClientResponse
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 UpdateNwcClientResponse
impl Debug for UpdateNwcClientResponse
Source§impl<'de> Deserialize<'de> for UpdateNwcClientResponse
impl<'de> Deserialize<'de> for UpdateNwcClientResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateNwcClientResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateNwcClientResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateNwcClientResponse
impl PartialEq for UpdateNwcClientResponse
Source§impl Serialize for UpdateNwcClientResponse
impl Serialize for UpdateNwcClientResponse
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 UpdateNwcClientResponse
Auto Trait Implementations§
impl Freeze for UpdateNwcClientResponse
impl RefUnwindSafe for UpdateNwcClientResponse
impl Send for UpdateNwcClientResponse
impl Sync for UpdateNwcClientResponse
impl Unpin for UpdateNwcClientResponse
impl UnsafeUnpin for UpdateNwcClientResponse
impl UnwindSafe for UpdateNwcClientResponse
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