#[repr(C)]pub struct mecab_path_t {
pub rnode: *mut mecab_node_t,
pub rnext: *mut mecab_path_t,
pub lnode: *mut mecab_node_t,
pub lnext: *mut mecab_path_t,
pub cost: c_int,
pub prob: f32,
}Expand description
Path structure
Fields§
§rnode: *mut mecab_node_tpointer to the right node
rnext: *mut mecab_path_tpointer to the next right path
lnode: *mut mecab_node_tpointer to the left node
lnext: *mut mecab_path_tpointer to the next left path
cost: c_intlocal cost
prob: f32marginal probability
Trait Implementations§
Source§impl Clone for mecab_path_t
impl Clone for mecab_path_t
Source§fn clone(&self) -> mecab_path_t
fn clone(&self) -> mecab_path_t
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 mecab_path_t
impl Debug for mecab_path_t
impl Copy for mecab_path_t
Auto Trait Implementations§
impl Freeze for mecab_path_t
impl RefUnwindSafe for mecab_path_t
impl !Send for mecab_path_t
impl !Sync for mecab_path_t
impl Unpin for mecab_path_t
impl UnsafeUnpin for mecab_path_t
impl UnwindSafe for mecab_path_t
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