Lines Matching defs:bool
217 pub fn is_null(&self) -> bool { in is_null()
233 pub fn is_boolean(&self) -> bool { in is_boolean()
249 pub fn is_true(&self) -> bool { in is_true()
268 pub fn is_false(&self) -> bool { in is_false()
287 pub fn is_number(&self) -> bool { in is_number()
303 pub fn is_string(&self) -> bool { in is_string()
319 pub fn is_array(&self) -> bool { in is_array()
335 pub fn is_object(&self) -> bool { in is_object()
351 pub fn try_as_boolean(&self) -> Result<&bool, Error> { in try_as_boolean()
453 pub fn try_as_mut_boolean(&mut self) -> Result<&mut bool, Error> { in try_as_mut_boolean()
556 pub fn try_into_boolean(self) -> Result<bool, Error> { in try_into_boolean()
861 fn eq(&self, other: &Self) -> bool { in eq()