pub struct IcuMessage {
pub nodes: Vec<IcuNode>,
}Expand description
Parsed ICU message.
Fields§
§nodes: Vec<IcuNode>Top-level AST nodes in source order.
Trait Implementations§
Source§impl Clone for IcuMessage
impl Clone for IcuMessage
Source§fn clone(&self) -> IcuMessage
fn clone(&self) -> IcuMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IcuMessage
impl Debug for IcuMessage
Source§impl Default for IcuMessage
impl Default for IcuMessage
Source§fn default() -> IcuMessage
fn default() -> IcuMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for IcuMessage
impl PartialEq for IcuMessage
impl Eq for IcuMessage
impl StructuralPartialEq for IcuMessage
Auto Trait Implementations§
impl Freeze for IcuMessage
impl RefUnwindSafe for IcuMessage
impl Send for IcuMessage
impl Sync for IcuMessage
impl Unpin for IcuMessage
impl UnsafeUnpin for IcuMessage
impl UnwindSafe for IcuMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more