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