pub struct TerminologyData {
pub file: Bytes,
pub format: String,
}
Expand description
The data associated with the custom terminology.
Fields§
§file: Bytes
The file containing the custom terminology data. Your version of the AWS SDK performs a Base64-encoding on this field before sending a request to the AWS service. Users of the SDK should not perform Base64-encoding themselves.
format: String
The data format of the custom terminology. Either CSV or TMX.
Trait Implementations§
Source§impl Clone for TerminologyData
impl Clone for TerminologyData
Source§fn clone(&self) -> TerminologyData
fn clone(&self) -> TerminologyData
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 TerminologyData
impl Debug for TerminologyData
Source§impl Default for TerminologyData
impl Default for TerminologyData
Source§fn default() -> TerminologyData
fn default() -> TerminologyData
Returns the “default value” for a type. Read more
Source§impl PartialEq for TerminologyData
impl PartialEq for TerminologyData
Source§impl Serialize for TerminologyData
impl Serialize for TerminologyData
impl StructuralPartialEq for TerminologyData
Auto Trait Implementations§
impl !Freeze for TerminologyData
impl RefUnwindSafe for TerminologyData
impl Send for TerminologyData
impl Sync for TerminologyData
impl Unpin for TerminologyData
impl UnwindSafe for TerminologyData
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