pub struct DefinedNameInfo {
pub name: String,
pub value: String,
pub scope: DefinedNameScope,
pub comment: Option<String>,
}Expand description
Information about a defined name.
Fields§
§name: String§value: StringThe reference or formula, e.g. “Sheet1!$A$1:$D$10”.
scope: DefinedNameScope§comment: Option<String>Trait Implementations§
Source§impl Clone for DefinedNameInfo
impl Clone for DefinedNameInfo
Source§fn clone(&self) -> DefinedNameInfo
fn clone(&self) -> DefinedNameInfo
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 moreAuto Trait Implementations§
impl Freeze for DefinedNameInfo
impl RefUnwindSafe for DefinedNameInfo
impl Send for DefinedNameInfo
impl Sync for DefinedNameInfo
impl Unpin for DefinedNameInfo
impl UnwindSafe for DefinedNameInfo
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