Struct golem_client::model::ComponentQuery
source · pub struct ComponentQuery {
pub project_id: Option<Uuid>,
pub component_name: ComponentName,
}
Fields§
§project_id: Option<Uuid>
§component_name: ComponentName
Trait Implementations§
source§impl Clone for ComponentQuery
impl Clone for ComponentQuery
source§fn clone(&self) -> ComponentQuery
fn clone(&self) -> ComponentQuery
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 ComponentQuery
impl Debug for ComponentQuery
source§impl<'de> Deserialize<'de> for ComponentQuery
impl<'de> Deserialize<'de> for ComponentQuery
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
source§impl Hash for ComponentQuery
impl Hash for ComponentQuery
source§impl Ord for ComponentQuery
impl Ord for ComponentQuery
source§fn cmp(&self, other: &ComponentQuery) -> Ordering
fn cmp(&self, other: &ComponentQuery) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ComponentQuery> for ComponentQuery
impl PartialEq<ComponentQuery> for ComponentQuery
source§fn eq(&self, other: &ComponentQuery) -> bool
fn eq(&self, other: &ComponentQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ComponentQuery> for ComponentQuery
impl PartialOrd<ComponentQuery> for ComponentQuery
source§fn partial_cmp(&self, other: &ComponentQuery) -> Option<Ordering>
fn partial_cmp(&self, other: &ComponentQuery) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for ComponentQuery
impl Serialize for ComponentQuery
impl Eq for ComponentQuery
impl StructuralEq for ComponentQuery
impl StructuralPartialEq for ComponentQuery
Auto Trait Implementations§
impl RefUnwindSafe for ComponentQuery
impl Send for ComponentQuery
impl Sync for ComponentQuery
impl Unpin for ComponentQuery
impl UnwindSafe for ComponentQuery
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.