pub struct ContractService {
pub api_kind: ApiKind,
pub interface_name: String,
pub interface_summary: Option<String>,
pub methods: Vec<ContractMethod>,
}Fields§
§api_kind: ApiKind§interface_name: String§interface_summary: Option<String>§methods: Vec<ContractMethod>Trait Implementations§
Source§impl Clone for ContractService
impl Clone for ContractService
Source§fn clone(&self) -> ContractService
fn clone(&self) -> ContractService
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 Debug for ContractService
impl Debug for ContractService
Source§impl PartialEq for ContractService
impl PartialEq for ContractService
Source§fn eq(&self, other: &ContractService) -> bool
fn eq(&self, other: &ContractService) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ContractService
impl StructuralPartialEq for ContractService
Auto Trait Implementations§
impl Freeze for ContractService
impl RefUnwindSafe for ContractService
impl Send for ContractService
impl Sync for ContractService
impl Unpin for ContractService
impl UnsafeUnpin for ContractService
impl UnwindSafe for ContractService
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