pub struct ProgramInfo {
pub version: Option<String>,
pub code_hash: Option<String>,
pub code_bytes: Option<u64>,
/* private fields */
}Expand description
Deployed Circle program metadata.
Fields§
§version: Option<String>§code_hash: Option<String>§code_bytes: Option<u64>Implementations§
Source§impl ProgramInfo
impl ProgramInfo
Trait Implementations§
Source§impl Clone for ProgramInfo
impl Clone for ProgramInfo
Source§fn clone(&self) -> ProgramInfo
fn clone(&self) -> ProgramInfo
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 ProgramInfo
impl Debug for ProgramInfo
Source§impl PartialEq for ProgramInfo
impl PartialEq for ProgramInfo
Source§fn eq(&self, other: &ProgramInfo) -> bool
fn eq(&self, other: &ProgramInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProgramInfo
Auto Trait Implementations§
impl Freeze for ProgramInfo
impl RefUnwindSafe for ProgramInfo
impl Send for ProgramInfo
impl Sync for ProgramInfo
impl Unpin for ProgramInfo
impl UnsafeUnpin for ProgramInfo
impl UnwindSafe for ProgramInfo
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