pub enum InputSecureValue {
InputSecureValue(InputSecureValue),
}Expand description
Variants§
InputSecureValue(InputSecureValue)
Trait Implementations§
Source§impl Clone for InputSecureValue
impl Clone for InputSecureValue
Source§fn clone(&self) -> InputSecureValue
fn clone(&self) -> InputSecureValue
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 InputSecureValue
impl Debug for InputSecureValue
Source§impl Deserializable for InputSecureValue
impl Deserializable for InputSecureValue
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<InputSecureValue> for InputSecureValue
impl From<InputSecureValue> for InputSecureValue
Source§fn from(x: InputSecureValue) -> Self
fn from(x: InputSecureValue) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputSecureValue
impl PartialEq for InputSecureValue
Source§impl Serializable for InputSecureValue
impl Serializable for InputSecureValue
Source§impl TryFrom<InputSecureValue> for InputSecureValue
impl TryFrom<InputSecureValue> for InputSecureValue
Source§type Error = InputSecureValue
type Error = InputSecureValue
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputSecureValue
Auto Trait Implementations§
impl Freeze for InputSecureValue
impl RefUnwindSafe for InputSecureValue
impl Send for InputSecureValue
impl Sync for InputSecureValue
impl Unpin for InputSecureValue
impl UnsafeUnpin for InputSecureValue
impl UnwindSafe for InputSecureValue
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