pub struct WordAnalysis {
pub origin_revision: RevisionPointer,
pub latest_revision: RevisionPointer,
pub inbound: Vec<RevisionPointer>,
pub outbound: Vec<RevisionPointer>,
/* private fields */
}
Fields§
§origin_revision: RevisionPointer
§latest_revision: RevisionPointer
§inbound: Vec<RevisionPointer>
§outbound: Vec<RevisionPointer>
Implementations§
Source§impl WordAnalysis
impl WordAnalysis
pub fn new(_pointer: WordPointer, origin_rev: &RevisionPointer) -> Self
Trait Implementations§
Source§impl Clone for WordAnalysis
impl Clone for WordAnalysis
Source§fn clone(&self) -> WordAnalysis
fn clone(&self) -> WordAnalysis
Returns a copy 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 WordAnalysis
impl RefUnwindSafe for WordAnalysis
impl Send for WordAnalysis
impl Sync for WordAnalysis
impl Unpin for WordAnalysis
impl UnwindSafe for WordAnalysis
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