pub struct CachedTranslation {
pub translated_text: String,
pub blocks: Vec<BlockTranslation>,
}Fields§
§translated_text: String§blocks: Vec<BlockTranslation>Trait Implementations§
Source§impl Clone for CachedTranslation
impl Clone for CachedTranslation
Source§fn clone(&self) -> CachedTranslation
fn clone(&self) -> CachedTranslation
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 CachedTranslation
impl Debug for CachedTranslation
impl Eq for CachedTranslation
Source§impl PartialEq for CachedTranslation
impl PartialEq for CachedTranslation
Source§fn eq(&self, other: &CachedTranslation) -> bool
fn eq(&self, other: &CachedTranslation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CachedTranslation
Auto Trait Implementations§
impl Freeze for CachedTranslation
impl RefUnwindSafe for CachedTranslation
impl Send for CachedTranslation
impl Sync for CachedTranslation
impl Unpin for CachedTranslation
impl UnsafeUnpin for CachedTranslation
impl UnwindSafe for CachedTranslation
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<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.