pub struct ExecutableIdentity {
pub program: ProgramRevision,
pub root_package: String,
pub entrypoint: String,
pub entrypoint_function: ProgramFunctionId,
pub entrypoint_kind: ExecutableEntrypointKind,
pub source_digest: Digest,
}Fields§
§program: ProgramRevision§root_package: String§entrypoint: String§entrypoint_function: ProgramFunctionId§entrypoint_kind: ExecutableEntrypointKind§source_digest: DigestTrait Implementations§
Source§impl Clone for ExecutableIdentity
impl Clone for ExecutableIdentity
Source§fn clone(&self) -> ExecutableIdentity
fn clone(&self) -> ExecutableIdentity
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 ExecutableIdentity
impl Debug for ExecutableIdentity
Source§impl<'de> Deserialize<'de> for ExecutableIdentity
impl<'de> Deserialize<'de> for ExecutableIdentity
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
impl Eq for ExecutableIdentity
Source§impl PartialEq for ExecutableIdentity
impl PartialEq for ExecutableIdentity
Source§impl Serialize for ExecutableIdentity
impl Serialize for ExecutableIdentity
impl StructuralPartialEq for ExecutableIdentity
Auto Trait Implementations§
impl Freeze for ExecutableIdentity
impl RefUnwindSafe for ExecutableIdentity
impl Send for ExecutableIdentity
impl Sync for ExecutableIdentity
impl Unpin for ExecutableIdentity
impl UnsafeUnpin for ExecutableIdentity
impl UnwindSafe for ExecutableIdentity
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