pub struct ExportItem {
pub item_type: ItemType,
pub pattern: String,
}Expand description
Single export item
Fields§
§item_type: ItemTypeType of item to export
pattern: StringName or pattern (supports wildcards like “sensor-*”)
Trait Implementations§
Source§impl Clone for ExportItem
impl Clone for ExportItem
Source§fn clone(&self) -> ExportItem
fn clone(&self) -> ExportItem
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 ExportItem
impl Debug for ExportItem
Source§impl PartialEq for ExportItem
impl PartialEq for ExportItem
impl StructuralPartialEq for ExportItem
Auto Trait Implementations§
impl Freeze for ExportItem
impl RefUnwindSafe for ExportItem
impl Send for ExportItem
impl Sync for ExportItem
impl Unpin for ExportItem
impl UnwindSafe for ExportItem
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