#[non_exhaustive]pub struct DeriveRunResponse {
pub orgs: BTreeMap<String, RederiveReport>,
}Expand description
The derive-run result, keyed by org.
Models the contract’s deriveRunResponse schema.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.orgs: BTreeMap<String, RederiveReport>The contract’s orgs.
Trait Implementations§
Source§impl Clone for DeriveRunResponse
impl Clone for DeriveRunResponse
Source§fn clone(&self) -> DeriveRunResponse
fn clone(&self) -> DeriveRunResponse
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 ContractModel for DeriveRunResponse
impl ContractModel for DeriveRunResponse
Source§impl Debug for DeriveRunResponse
impl Debug for DeriveRunResponse
Source§impl Default for DeriveRunResponse
impl Default for DeriveRunResponse
Source§fn default() -> DeriveRunResponse
fn default() -> DeriveRunResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeriveRunResponsewhere
DeriveRunResponse: Default,
impl<'de> Deserialize<'de> for DeriveRunResponsewhere
DeriveRunResponse: Default,
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 DeriveRunResponse
impl PartialEq for DeriveRunResponse
Source§impl Serialize for DeriveRunResponse
impl Serialize for DeriveRunResponse
impl StructuralPartialEq for DeriveRunResponse
Auto Trait Implementations§
impl Freeze for DeriveRunResponse
impl RefUnwindSafe for DeriveRunResponse
impl Send for DeriveRunResponse
impl Sync for DeriveRunResponse
impl Unpin for DeriveRunResponse
impl UnsafeUnpin for DeriveRunResponse
impl UnwindSafe for DeriveRunResponse
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