pub struct BeamModule {
pub name: String,
pub bytes: Vec<u8>,
}Expand description
A compiled BEAM module preserved exactly as supplied to the package layer.
Fields§
§name: StringLogical module name before deployment-time namespacing.
bytes: Vec<u8>Exact compiled .beam bytes for the logical module.
Implementations§
Source§impl BeamModule
impl BeamModule
Trait Implementations§
Source§impl Clone for BeamModule
impl Clone for BeamModule
Source§fn clone(&self) -> BeamModule
fn clone(&self) -> BeamModule
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 BeamModule
impl Debug for BeamModule
impl Eq for BeamModule
Source§impl PartialEq for BeamModule
impl PartialEq for BeamModule
Source§fn eq(&self, other: &BeamModule) -> bool
fn eq(&self, other: &BeamModule) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BeamModule
Auto Trait Implementations§
impl Freeze for BeamModule
impl RefUnwindSafe for BeamModule
impl Send for BeamModule
impl Sync for BeamModule
impl Unpin for BeamModule
impl UnsafeUnpin for BeamModule
impl UnwindSafe for BeamModule
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.