pub struct PlatformMakerControlSubmitResponse {
pub schema_version: u16,
pub contract_version: String,
pub maker_control_id: String,
pub market_id: String,
pub maker_wallet: String,
pub product: PlatformMakerControlProduct,
pub action: PlatformMakerControlAction,
pub signature: String,
pub status: PlatformMakerControlSubmissionStatus,
}Fields§
§schema_version: u16§contract_version: String§maker_control_id: String§market_id: String§maker_wallet: String§product: PlatformMakerControlProduct§action: PlatformMakerControlAction§signature: String§status: PlatformMakerControlSubmissionStatusTrait Implementations§
Source§impl Clone for PlatformMakerControlSubmitResponse
impl Clone for PlatformMakerControlSubmitResponse
Source§fn clone(&self) -> PlatformMakerControlSubmitResponse
fn clone(&self) -> PlatformMakerControlSubmitResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for PlatformMakerControlSubmitResponse
impl<'de> Deserialize<'de> for PlatformMakerControlSubmitResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerControlSubmitResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformMakerControlSubmitResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformMakerControlSubmitResponse
Source§impl Serialize for PlatformMakerControlSubmitResponse
impl Serialize for PlatformMakerControlSubmitResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlatformMakerControlSubmitResponse
Auto Trait Implementations§
impl Freeze for PlatformMakerControlSubmitResponse
impl RefUnwindSafe for PlatformMakerControlSubmitResponse
impl Send for PlatformMakerControlSubmitResponse
impl Sync for PlatformMakerControlSubmitResponse
impl Unpin for PlatformMakerControlSubmitResponse
impl UnsafeUnpin for PlatformMakerControlSubmitResponse
impl UnwindSafe for PlatformMakerControlSubmitResponse
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