Struct Log
pub struct Log<let N: u32> {
pub fields: [Field; N],
pub length: u32,
}
Fields
fields: [Field; N]length: u32Implementations
impl<let N: u32> Log<N>
Trait implementations
impl<let N: u32> Deserialize for Log<N>
pub fn deserialize(serialized: [Field; N + 1]) -> Self
impl<let N: u32> Empty for Log<N>
pub fn empty() -> Self
pub fn is_empty(self) -> bool
pub fn assert_empty<let S: u32>(self, msg: str<S>)
impl<let N: u32> Eq for Log<N>
pub fn eq(_self: Self, _other: Self) -> bool
impl<let N: u32> Serialize for Log<N>
pub fn serialize(self) -> [Field; N + 1]