pub struct IbeCiphertext {
pub identity: String,
pub ciphertext_hex: String,
}Expand description
IBE ciphertext for a specific identity.
Fields§
§identity: String§ciphertext_hex: StringTrait Implementations§
Source§impl Clone for IbeCiphertext
impl Clone for IbeCiphertext
Source§fn clone(&self) -> IbeCiphertext
fn clone(&self) -> IbeCiphertext
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 IbeCiphertext
impl Debug for IbeCiphertext
Source§impl<'de> Deserialize<'de> for IbeCiphertext
impl<'de> Deserialize<'de> for IbeCiphertext
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 IbeCiphertext
impl RefUnwindSafe for IbeCiphertext
impl Send for IbeCiphertext
impl Sync for IbeCiphertext
impl Unpin for IbeCiphertext
impl UnsafeUnpin for IbeCiphertext
impl UnwindSafe for IbeCiphertext
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