pub struct StackBlock {
pub id: usize,
pub created: usize,
pub initiator: usize,
pub stack: usize,
}Fields§
§id: usize§created: usize§initiator: usize§stack: usizeImplementations§
Source§impl StackBlock
impl StackBlock
Sourcepub fn new(initiator: usize, stack: usize) -> Self
pub fn new(initiator: usize, stack: usize) -> Self
Create a new StackBlock.
Trait Implementations§
Source§impl Clone for StackBlock
impl Clone for StackBlock
Source§fn clone(&self) -> StackBlock
fn clone(&self) -> StackBlock
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 StackBlock
impl Debug for StackBlock
Source§impl<'de> Deserialize<'de> for StackBlock
impl<'de> Deserialize<'de> for StackBlock
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StackBlock
impl RefUnwindSafe for StackBlock
impl Send for StackBlock
impl Sync for StackBlock
impl Unpin for StackBlock
impl UnwindSafe for StackBlock
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