pub struct ListQuantumProcessorsResponse {
pub next_page_token: Option<String>,
pub quantum_processors: Vec<QuantumProcessor>,
}Fields§
§next_page_token: Option<String>Opaque token indicating the start of the next page of results to return; do not decode
quantum_processors: Vec<QuantumProcessor>Implementations§
Source§impl ListQuantumProcessorsResponse
impl ListQuantumProcessorsResponse
pub fn new( quantum_processors: Vec<QuantumProcessor>, ) -> ListQuantumProcessorsResponse
Trait Implementations§
Source§impl Clone for ListQuantumProcessorsResponse
impl Clone for ListQuantumProcessorsResponse
Source§fn clone(&self) -> ListQuantumProcessorsResponse
fn clone(&self) -> ListQuantumProcessorsResponse
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 Default for ListQuantumProcessorsResponse
impl Default for ListQuantumProcessorsResponse
Source§fn default() -> ListQuantumProcessorsResponse
fn default() -> ListQuantumProcessorsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListQuantumProcessorsResponse
impl<'de> Deserialize<'de> for ListQuantumProcessorsResponse
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 PartialEq for ListQuantumProcessorsResponse
impl PartialEq for ListQuantumProcessorsResponse
Source§fn eq(&self, other: &ListQuantumProcessorsResponse) -> bool
fn eq(&self, other: &ListQuantumProcessorsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListQuantumProcessorsResponse
Auto Trait Implementations§
impl Freeze for ListQuantumProcessorsResponse
impl RefUnwindSafe for ListQuantumProcessorsResponse
impl Send for ListQuantumProcessorsResponse
impl Sync for ListQuantumProcessorsResponse
impl Unpin for ListQuantumProcessorsResponse
impl UnwindSafe for ListQuantumProcessorsResponse
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