Lines Matching refs:bare
89 fn from(bare: bool) -> Self { in from()
90 Self::Bool(bare.into()) in from()
109 fn from(bare: u64) -> Self { in from()
110 Self::IntegerRange(bare.into()) in from()
129 fn from(bare: f64) -> Self { in from()
130 Self::FloatRange(bare.into()) in from()
149 fn from(bare: Vec<String>) -> Self { in from()
150 Self::StringSequence(bare.into()) in from()
155 fn from(bare: Vec<&str>) -> Self { in from()
156 let bare: Vec<String> = bare.into_iter().map(|c| c.to_owned()).collect(); in from() localVariable
157 Self::from(bare) in from()
176 fn from(bare: String) -> Self { in from()
177 Self::String(bare.into()) in from()
182 fn from(bare: &'a str) -> Self { in from()
183 let bare: String = bare.to_owned(); in from() localVariable
184 Self::from(bare) in from()