pub struct NbestResult { /* private fields */ }Expand description
N-best 검색 결과
Implementations§
Source§impl NbestResult
impl NbestResult
Sourcepub const fn new(paths: Vec<NbestPath>) -> NbestResult
pub const fn new(paths: Vec<NbestPath>) -> NbestResult
새 결과 생성
Sourcepub fn into_paths(self) -> Vec<NbestPath>
pub fn into_paths(self) -> Vec<NbestPath>
경로 벡터로 변환
Trait Implementations§
Source§impl Clone for NbestResult
impl Clone for NbestResult
Source§fn clone(&self) -> NbestResult
fn clone(&self) -> NbestResult
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 NbestResult
impl Debug for NbestResult
Source§impl Default for NbestResult
impl Default for NbestResult
Source§fn default() -> NbestResult
fn default() -> NbestResult
Returns the “default value” for a type. Read more
Source§impl IntoIterator for NbestResult
impl IntoIterator for NbestResult
Auto Trait Implementations§
impl Freeze for NbestResult
impl RefUnwindSafe for NbestResult
impl Send for NbestResult
impl Sync for NbestResult
impl Unpin for NbestResult
impl UnsafeUnpin for NbestResult
impl UnwindSafe for NbestResult
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