pub struct ExcludedModule {
pub module: String,
pub package: String,
pub reason: ExcludedReason,
}Expand description
A compiled module excluded from packaging, with provenance.
Fields§
§module: StringLogical module name that was excluded.
package: StringGleam package whose ebin provided the module.
reason: ExcludedReasonWhy the module was excluded.
Trait Implementations§
Source§impl Clone for ExcludedModule
impl Clone for ExcludedModule
Source§fn clone(&self) -> ExcludedModule
fn clone(&self) -> ExcludedModule
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 ExcludedModule
impl Debug for ExcludedModule
impl Eq for ExcludedModule
Source§impl PartialEq for ExcludedModule
impl PartialEq for ExcludedModule
Source§fn eq(&self, other: &ExcludedModule) -> bool
fn eq(&self, other: &ExcludedModule) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExcludedModule
impl Serialize for ExcludedModule
impl StructuralPartialEq for ExcludedModule
Auto Trait Implementations§
impl Freeze for ExcludedModule
impl RefUnwindSafe for ExcludedModule
impl Send for ExcludedModule
impl Sync for ExcludedModule
impl Unpin for ExcludedModule
impl UnsafeUnpin for ExcludedModule
impl UnwindSafe for ExcludedModule
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.