pub struct ResponsePhrases {
pub common: ResponseCommon,
pub results: Vec<PhraseResult>,
}
Expand description
Represents the reply to a Phrases-request.
Fields§
§common: ResponseCommon
§results: Vec<PhraseResult>
The results returned by the server that mark effects of submitted phrases.
Trait Implementations§
Source§impl Clone for ResponsePhrases
impl Clone for ResponsePhrases
Source§fn clone(&self) -> ResponsePhrases
fn clone(&self) -> ResponsePhrases
Returns a copy 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 ResponsePhrases
impl Debug for ResponsePhrases
Source§impl<'de> Deserialize<'de> for ResponsePhrases
impl<'de> Deserialize<'de> for ResponsePhrases
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResponsePhrases
impl RefUnwindSafe for ResponsePhrases
impl Send for ResponsePhrases
impl Sync for ResponsePhrases
impl Unpin for ResponsePhrases
impl UnwindSafe for ResponsePhrases
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