pub struct LatticeStats {
pub total_nodes: usize,
pub known_nodes: usize,
pub unknown_nodes: usize,
pub user_nodes: usize,
pub char_length: usize,
}Expand description
Lattice 통계 정보
Fields§
§total_nodes: usize총 노드 수
known_nodes: usizeKnown 노드 수
unknown_nodes: usizeUnknown 노드 수
user_nodes: usizeUser 노드 수
char_length: usize문자 길이
Trait Implementations§
Source§impl Clone for LatticeStats
impl Clone for LatticeStats
Source§fn clone(&self) -> LatticeStats
fn clone(&self) -> LatticeStats
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 moreSource§impl Debug for LatticeStats
impl Debug for LatticeStats
Source§impl Default for LatticeStats
impl Default for LatticeStats
Source§fn default() -> LatticeStats
fn default() -> LatticeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LatticeStats
impl RefUnwindSafe for LatticeStats
impl Send for LatticeStats
impl Sync for LatticeStats
impl Unpin for LatticeStats
impl UnsafeUnpin for LatticeStats
impl UnwindSafe for LatticeStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more