pub struct SecretNoteResponse {
pub secret: Option<String>,
pub note: Option<String>,
}Expand description
SecretNoteResponse
Fields§
§secret: Option<String>§note: Option<String>Implementations§
Source§impl SecretNoteResponse
impl SecretNoteResponse
pub fn new() -> SecretNoteResponse
Trait Implementations§
Source§impl Clone for SecretNoteResponse
impl Clone for SecretNoteResponse
Source§fn clone(&self) -> SecretNoteResponse
fn clone(&self) -> SecretNoteResponse
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 SecretNoteResponse
impl Debug for SecretNoteResponse
Source§impl Default for SecretNoteResponse
impl Default for SecretNoteResponse
Source§fn default() -> SecretNoteResponse
fn default() -> SecretNoteResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretNoteResponse
impl<'de> Deserialize<'de> for SecretNoteResponse
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 SecretNoteResponse
impl PartialEq for SecretNoteResponse
Source§impl Serialize for SecretNoteResponse
impl Serialize for SecretNoteResponse
impl StructuralPartialEq for SecretNoteResponse
Auto Trait Implementations§
impl Freeze for SecretNoteResponse
impl RefUnwindSafe for SecretNoteResponse
impl Send for SecretNoteResponse
impl Sync for SecretNoteResponse
impl Unpin for SecretNoteResponse
impl UnsafeUnpin for SecretNoteResponse
impl UnwindSafe for SecretNoteResponse
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