Lines Matching refs:Bool
71 Bool(ValueConstraint<bool>), enumerator
90 Self::Bool(bare.into()) in from()
96 Self::Bool(constraint.into()) in from()
102 Self::Bool(constraint) in from()
205 MediaTrackSetting::Bool(value) => Self::Bool(value.into()), in from()
222 Self::Bool(constraint) => constraint.is_empty(), in is_empty()
251 Self::Bool(constraint) => { in into_resolved()
252 ResolvedMediaTrackConstraint::Bool(constraint.into_resolved(strategy)) in into_resolved()
285 Bool(ResolvedValueConstraint<bool>), enumerator
304 Self::Bool(constraint) => constraint.fmt(f), in fmt()
315 Self::Bool(constraint) in from()
372 Self::Bool(constraint) => constraint.is_required(), in is_required()
384 Self::Bool(constraint) => constraint.is_empty(), in is_empty()
402 Self::Bool(constraint) => Self::Bool(constraint.into_required_only()), in into_required_only()
487 Subject::from(MediaTrackSetting::Bool(true)), in setting()
488 Subject::Bool(ValueConstraint::Bare(_)) in setting()
515 assert!(matches!(subject, Subject::Bool(_))); in bool()
589 Subject::Bool(ValueConstraint::Bare(true)), in is_empty()
609 Subject::Bool(ValueConstraint::Bare(true)), in to_resolved()
610 ResolvedMediaTrackConstraint::Bool(ResolvedValueConstraint::default().exact(true)), in to_resolved()
655 Subject::Bool(ResolvedValueConstraint::default().exact(true)), in to_string()
706 let subject = Subject::Bool(true.into()); in bool_bare()
714 let subject = Subject::Bool(ResolvedValueConstraint::default().exact(true).into()); in bool_constraint()