Lines Matching refs:into_owned

87     pub fn into_owned(self) -> BytesStart<'static> {  in into_owned()  method
88 Self::owned(self.buf.into_owned(), self.name_len) in into_owned()
277 String::from_utf8(unescaped.into_owned()).map_err(|e| Error::Utf8(e.utf8_error())) in do_unescape_and_decode_with_custom_entities()
290 String::from_utf8(unescaped.into_owned()).map_err(|e| Error::Utf8(e.utf8_error())) in do_unescape_and_decode_with_custom_entities()
450 pub fn into_owned(self) -> BytesDecl<'static> { in into_owned() method
452 element: self.element.into_owned(), in into_owned()
481 pub fn into_owned(self) -> BytesEnd<'static> { in into_owned() method
483 name: Cow::Owned(self.name.into_owned()), in into_owned()
560 pub fn into_owned(self) -> BytesText<'static> { in into_owned() method
562 content: self.content.into_owned().into(), in into_owned()
687 String::from_utf8(unescaped.into_owned()).map_err(|e| Error::Utf8(e.utf8_error())) in do_unescape_and_decode_without_bom()
699 String::from_utf8(unescaped.into_owned()).map_err(|e| Error::Utf8(e.utf8_error())) in do_unescape_and_decode_without_bom()
739 String::from_utf8(unescaped.into_owned()).map_err(|e| Error::Utf8(e.utf8_error())) in do_unescape_and_decode_with_custom_entities()
751 String::from_utf8(unescaped.into_owned()).map_err(|e| Error::Utf8(e.utf8_error())) in do_unescape_and_decode_with_custom_entities()
800 pub fn into_owned(self) -> Event<'static> { in into_owned() method
802 Event::Start(e) => Event::Start(e.into_owned()), in into_owned()
803 Event::End(e) => Event::End(e.into_owned()), in into_owned()
804 Event::Empty(e) => Event::Empty(e.into_owned()), in into_owned()
805 Event::Text(e) => Event::Text(e.into_owned()), in into_owned()
806 Event::Comment(e) => Event::Comment(e.into_owned()), in into_owned()
807 Event::CData(e) => Event::CData(e.into_owned()), in into_owned()
808 Event::Decl(e) => Event::Decl(e.into_owned()), in into_owned()
809 Event::PI(e) => Event::PI(e.into_owned()), in into_owned()
810 Event::DocType(e) => Event::DocType(e.into_owned()), in into_owned()