Lines Matching +full:cxxbridge +full:- +full:cmd
20 pub(crate) fn new() -> Self { in new()
27 pub(crate) fn insert(&mut self, value: &'a T) -> bool { in insert()
37 pub(crate) fn is_empty(&self) -> bool { in is_empty()
41 pub(crate) fn iter(&self) -> Iter<'_, 'a, T> { in iter()
49 fn into_iter(self) -> Self::IntoIter { in into_iter()
68 pub(crate) fn new() -> Self { in new()
72 pub(crate) fn insert(&mut self, value: T) -> bool { in insert()
76 pub(crate) fn contains<Q>(&self, value: &Q) -> bool in contains()
84 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-cmd
85 pub(crate) fn get<Q>(&self, value: &Q) -> Option<&T> in get()
93 pub(crate) fn retain(&mut self, f: impl FnMut(&T) -> bool) { in retain()
104 fn next(&mut self) -> Option<Self::Item> { in next()
108 fn size_hint(&self) -> (usize, Option<usize>) { in size_hint()
117 fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result { in fmt()