pub struct CryptoParameter {
pub name: String,
pub value: String,
}Expand description
加密参数。
对应 Java: org.ofdrw.core.crypto.encryt.Parameter
Fields§
§name: String参数名。
value: String参数值。
Implementations§
Trait Implementations§
Source§impl Clone for CryptoParameter
impl Clone for CryptoParameter
Source§fn clone(&self) -> CryptoParameter
fn clone(&self) -> CryptoParameter
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 CryptoParameter
impl Debug for CryptoParameter
Source§impl Default for CryptoParameter
impl Default for CryptoParameter
Source§fn default() -> CryptoParameter
fn default() -> CryptoParameter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CryptoParameter
impl RefUnwindSafe for CryptoParameter
impl Send for CryptoParameter
impl Sync for CryptoParameter
impl Unpin for CryptoParameter
impl UnsafeUnpin for CryptoParameter
impl UnwindSafe for CryptoParameter
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