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