Home
last modified time | relevance | path

Searched refs:bare (Results 1 – 4 of 4) sorted by relevance

/webrtc/constraints/src/constraint/
H A Dvalue_sequence.rs38 fn from(bare: T) -> Self { in from()
39 Self::Bare(vec![bare]) in from()
44 fn from(bare: Vec<T>) -> Self { in from()
45 Self::Bare(bare) in from()
75 Self::Bare(bare) => match strategy { in into_resolved()
77 ResolvedValueSequenceConstraint::default().ideal(bare) in into_resolved()
80 ResolvedValueSequenceConstraint::default().exact(bare) in into_resolved()
92 Self::Bare(bare) => bare.is_empty(), in is_empty()
287 fn bare() { in bare() function
394 fn bare() {
H A Dvalue.rs38 fn from(bare: T) -> Self { in from()
39 Self::Bare(bare) in from()
69 Self::Bare(bare) => match strategy { in into_resolved()
71 ResolvedValueConstraint::default().ideal(bare) in into_resolved()
74 ResolvedValueConstraint::default().exact(bare) in into_resolved()
270 fn bare() { in bare() function
365 fn bare() {
H A Dvalue_range.rs40 fn from(bare: T) -> Self { in from()
41 Self::Bare(bare) in from()
71 Self::Bare(bare) => match strategy { in into_resolved()
73 ResolvedValueRangeConstraint::default().ideal(bare) in into_resolved()
76 ResolvedValueRangeConstraint::default().exact(bare) in into_resolved()
326 fn bare() { in bare() function
437 fn bare() {
/webrtc/constraints/src/
H A Dconstraint.rs89 fn from(bare: bool) -> Self { in from()
90 Self::Bool(bare.into()) in from()
109 fn from(bare: u64) -> Self { in from()
129 fn from(bare: f64) -> 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
[all …]