pub enum BuildWarning {
DuplicateInletConnection {
node_id: String,
inlet: u32,
count: usize,
},
}Expand description
Build warning
Variants§
DuplicateInletConnection
W001: duplicate connection to the same inlet
Trait Implementations§
Source§impl Clone for BuildWarning
impl Clone for BuildWarning
Source§fn clone(&self) -> BuildWarning
fn clone(&self) -> BuildWarning
Returns a duplicate of the value. Read more
1.0.0 · 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 BuildWarning
impl Debug for BuildWarning
Auto Trait Implementations§
impl Freeze for BuildWarning
impl RefUnwindSafe for BuildWarning
impl Send for BuildWarning
impl Sync for BuildWarning
impl Unpin for BuildWarning
impl UnsafeUnpin for BuildWarning
impl UnwindSafe for BuildWarning
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