pub struct CircuitStatusResponse {
pub circuit_id: String,
pub status: JobStatus,
pub finished_processing: bool,
}Expand description
CircuitStatusResponse : Response for getting circuit status.
Fields§
§circuit_id: StringA unique identifier generated for the circuit. UUID4 format.
status: JobStatusThe status of the circuit job.
finished_processing: boolThe job is finished processing and waiting/polling can be terminated.
Implementations§
Trait Implementations§
Source§impl Clone for CircuitStatusResponse
impl Clone for CircuitStatusResponse
Source§fn clone(&self) -> CircuitStatusResponse
fn clone(&self) -> CircuitStatusResponse
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 CircuitStatusResponse
impl Debug for CircuitStatusResponse
Source§impl Default for CircuitStatusResponse
impl Default for CircuitStatusResponse
Source§fn default() -> CircuitStatusResponse
fn default() -> CircuitStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CircuitStatusResponse
impl<'de> Deserialize<'de> for CircuitStatusResponse
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 CircuitStatusResponse
impl PartialEq for CircuitStatusResponse
Source§impl Serialize for CircuitStatusResponse
impl Serialize for CircuitStatusResponse
impl StructuralPartialEq for CircuitStatusResponse
Auto Trait Implementations§
impl Freeze for CircuitStatusResponse
impl RefUnwindSafe for CircuitStatusResponse
impl Send for CircuitStatusResponse
impl Sync for CircuitStatusResponse
impl Unpin for CircuitStatusResponse
impl UnwindSafe for CircuitStatusResponse
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