pub struct SandboxRegisterResponse {
pub tracking_id: String,
pub status: String,
pub payload: SandboxAccount,
}Fields§
§tracking_id: String§status: String§payload: SandboxAccountImplementations§
Source§impl SandboxRegisterResponse
impl SandboxRegisterResponse
pub fn new( tracking_id: String, status: String, payload: SandboxAccount, ) -> SandboxRegisterResponse
Trait Implementations§
Source§impl Clone for SandboxRegisterResponse
impl Clone for SandboxRegisterResponse
Source§fn clone(&self) -> SandboxRegisterResponse
fn clone(&self) -> SandboxRegisterResponse
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 SandboxRegisterResponse
impl Debug for SandboxRegisterResponse
Source§impl<'de> Deserialize<'de> for SandboxRegisterResponse
impl<'de> Deserialize<'de> for SandboxRegisterResponse
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 SandboxRegisterResponse
impl PartialEq for SandboxRegisterResponse
Source§impl Serialize for SandboxRegisterResponse
impl Serialize for SandboxRegisterResponse
impl StructuralPartialEq for SandboxRegisterResponse
Auto Trait Implementations§
impl Freeze for SandboxRegisterResponse
impl RefUnwindSafe for SandboxRegisterResponse
impl Send for SandboxRegisterResponse
impl Sync for SandboxRegisterResponse
impl Unpin for SandboxRegisterResponse
impl UnwindSafe for SandboxRegisterResponse
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