pub struct ProductionFunction {
pub name: String,
pub file: String,
pub line: usize,
pub class_name: Option<String>,
pub is_exported: bool,
}Fields§
§name: String§file: String§line: usize§class_name: Option<String>§is_exported: boolTrait Implementations§
Source§impl Clone for ProductionFunction
impl Clone for ProductionFunction
Source§fn clone(&self) -> ProductionFunction
fn clone(&self) -> ProductionFunction
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 ProductionFunction
impl Debug for ProductionFunction
Source§impl PartialEq for ProductionFunction
impl PartialEq for ProductionFunction
impl StructuralPartialEq for ProductionFunction
Auto Trait Implementations§
impl Freeze for ProductionFunction
impl RefUnwindSafe for ProductionFunction
impl Send for ProductionFunction
impl Sync for ProductionFunction
impl Unpin for ProductionFunction
impl UnsafeUnpin for ProductionFunction
impl UnwindSafe for ProductionFunction
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