pub struct EntroshapeHint {
pub kind: String,
pub offset: u64,
pub length: Option<u64>,
pub description: String,
pub source: String,
pub details: BTreeMap<String, String>,
pub pattern_matches: Vec<PatternMatch>,
}Fields§
§kind: String§offset: u64§length: Option<u64>§description: String§source: String§details: BTreeMap<String, String>§pattern_matches: Vec<PatternMatch>Trait Implementations§
Source§impl Clone for EntroshapeHint
impl Clone for EntroshapeHint
Source§fn clone(&self) -> EntroshapeHint
fn clone(&self) -> EntroshapeHint
Returns a duplicate of the value. Read more
1.0.0 · 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 EntroshapeHint
impl RefUnwindSafe for EntroshapeHint
impl Send for EntroshapeHint
impl Sync for EntroshapeHint
impl Unpin for EntroshapeHint
impl UnsafeUnpin for EntroshapeHint
impl UnwindSafe for EntroshapeHint
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