mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 18:57:44 +02:00
Remove duplicate method (retag) (#2147)
This commit is contained in:
@ -48,14 +48,6 @@ pub enum UntaggedValue {
|
||||
}
|
||||
|
||||
impl UntaggedValue {
|
||||
/// Tags an UntaggedValue so that it can become a Value
|
||||
pub fn retag(self, tag: impl Into<Tag>) -> Value {
|
||||
Value {
|
||||
value: self,
|
||||
tag: tag.into(),
|
||||
}
|
||||
}
|
||||
|
||||
/// Get the corresponding descriptors (column names) associated with this value
|
||||
pub fn data_descriptors(&self) -> Vec<String> {
|
||||
match self {
|
||||
|
Reference in New Issue
Block a user