pub struct LoadedSignature {
pub id: StId,
pub sig_type: String,
pub base_loc: String,
pub signature: Signature,
}Expand description
已装载的单个签名及其在包内的解析路径。
Fields§
§id: StId签名标识。
sig_type: String签名类型(Seal/Sign)。
base_loc: StringSignature.xml 在包内的解析路径。
signature: Signature解析后的签名描述。
Trait Implementations§
Source§impl Clone for LoadedSignature
impl Clone for LoadedSignature
Source§fn clone(&self) -> LoadedSignature
fn clone(&self) -> LoadedSignature
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 moreAuto Trait Implementations§
impl Freeze for LoadedSignature
impl RefUnwindSafe for LoadedSignature
impl Send for LoadedSignature
impl Sync for LoadedSignature
impl Unpin for LoadedSignature
impl UnsafeUnpin for LoadedSignature
impl UnwindSafe for LoadedSignature
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