pub enum StringLCSResult {
Str(String),
Len(u32),
Idx(StringLCSIdxResult),
}Expand description
Longest Common Subsequence combined result enumeration aligned with Apache Kvrocks StringLCSResult. 最长公共子序列综合结果
Variants§
Trait Implementations§
Source§impl Clone for StringLCSResult
impl Clone for StringLCSResult
Source§fn clone(&self) -> StringLCSResult
fn clone(&self) -> StringLCSResult
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 StringLCSResult
impl Debug for StringLCSResult
impl Eq for StringLCSResult
Source§impl PartialEq for StringLCSResult
impl PartialEq for StringLCSResult
impl StructuralPartialEq for StringLCSResult
Auto Trait Implementations§
impl Freeze for StringLCSResult
impl RefUnwindSafe for StringLCSResult
impl Send for StringLCSResult
impl Sync for StringLCSResult
impl Unpin for StringLCSResult
impl UnsafeUnpin for StringLCSResult
impl UnwindSafe for StringLCSResult
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.