pub struct CanonicalQuery {
pub address: Option<Vec<u8>>,
pub min_amount: Option<CanonicalAssets>,
pub refs: HashSet<UtxoRef>,
pub support_many: bool,
pub collateral: bool,
}Fields§
§address: Option<Vec<u8>>§min_amount: Option<CanonicalAssets>§refs: HashSet<UtxoRef>§support_many: bool§collateral: boolTrait Implementations§
Source§impl Clone for CanonicalQuery
impl Clone for CanonicalQuery
Source§fn clone(&self) -> CanonicalQuery
fn clone(&self) -> CanonicalQuery
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 CanonicalQuery
impl Debug for CanonicalQuery
Source§impl Display for CanonicalQuery
impl Display for CanonicalQuery
Source§impl IntoErrorData for CanonicalQuery
impl IntoErrorData for CanonicalQuery
type Output = InputQueryDiagnostic
fn into_error_data(self) -> Self::Output
Source§impl TryFrom<InputQuery> for CanonicalQuery
impl TryFrom<InputQuery> for CanonicalQuery
Auto Trait Implementations§
impl Freeze for CanonicalQuery
impl RefUnwindSafe for CanonicalQuery
impl Send for CanonicalQuery
impl Sync for CanonicalQuery
impl Unpin for CanonicalQuery
impl UnsafeUnpin for CanonicalQuery
impl UnwindSafe for CanonicalQuery
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