pub struct PhraseResultInstanceQuery {
pub common: PhraseResultCommon,
pub result: Vec<ExpressionConstructorApp>,
}
Expand description
Defines the result given by the server when an instance query is processed.
Fields§
§common: PhraseResultCommon
The common fields of any PhraseResult
.
result: Vec<ExpressionConstructorApp>
The list of instances found, encoded as constructor applications.
Trait Implementations§
Source§impl Clone for PhraseResultInstanceQuery
impl Clone for PhraseResultInstanceQuery
Source§fn clone(&self) -> PhraseResultInstanceQuery
fn clone(&self) -> PhraseResultInstanceQuery
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 PhraseResultInstanceQuery
impl Debug for PhraseResultInstanceQuery
Source§impl<'de> Deserialize<'de> for PhraseResultInstanceQuery
impl<'de> Deserialize<'de> for PhraseResultInstanceQuery
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 PhraseResultInstanceQuery
impl RefUnwindSafe for PhraseResultInstanceQuery
impl Send for PhraseResultInstanceQuery
impl Sync for PhraseResultInstanceQuery
impl Unpin for PhraseResultInstanceQuery
impl UnwindSafe for PhraseResultInstanceQuery
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