pub struct DomainScheduleEntry {
pub domain: u64,
pub duration: u64,
}Expand description
Domain schedule entry: time allocation for a domain
Corresponds to: Lion.DomainScheduleEntry
Fields§
§domain: u64Domain identifier
duration: u64Duration in ticks
Trait Implementations§
Source§impl Clone for DomainScheduleEntry
impl Clone for DomainScheduleEntry
Source§fn clone(&self) -> DomainScheduleEntry
fn clone(&self) -> DomainScheduleEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for DomainScheduleEntry
impl PartialEq for DomainScheduleEntry
Source§fn eq(&self, other: &DomainScheduleEntry) -> bool
fn eq(&self, other: &DomainScheduleEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DomainScheduleEntry
impl Eq for DomainScheduleEntry
impl StructuralPartialEq for DomainScheduleEntry
Auto Trait Implementations§
impl Freeze for DomainScheduleEntry
impl RefUnwindSafe for DomainScheduleEntry
impl Send for DomainScheduleEntry
impl Sync for DomainScheduleEntry
impl Unpin for DomainScheduleEntry
impl UnsafeUnpin for DomainScheduleEntry
impl UnwindSafe for DomainScheduleEntry
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