#[non_exhaustive]pub struct IsccIdResult {
pub iscc: String,
}Expand description
Result of gen_iscc_id_v1.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.iscc: StringISCC-IDv1 string (e.g., "ISCC:MAIGHFECJMOPMIAB").
Trait Implementations§
Source§impl Clone for IsccIdResult
impl Clone for IsccIdResult
Source§fn clone(&self) -> IsccIdResult
fn clone(&self) -> IsccIdResult
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 IsccIdResult
impl Debug for IsccIdResult
impl Eq for IsccIdResult
Source§impl PartialEq for IsccIdResult
impl PartialEq for IsccIdResult
impl StructuralPartialEq for IsccIdResult
Auto Trait Implementations§
impl Freeze for IsccIdResult
impl RefUnwindSafe for IsccIdResult
impl Send for IsccIdResult
impl Sync for IsccIdResult
impl Unpin for IsccIdResult
impl UnsafeUnpin for IsccIdResult
impl UnwindSafe for IsccIdResult
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