#[repr(u8)]pub enum Status {
Success = 1,
Error = 2,
Follow = 33,
}Expand description
The server’s reply status in an accounting session.
Variants§
Success = 1
Task logging succeeded.
Error = 2
Something went wrong when logging the task.
Follow = 33
👎Deprecated: Forwarding to an alternative daemon was deprecated in RFC-8907.
Forward accounting request to an alternative daemon.
Trait Implementations§
Source§impl TryFromPrimitive for Status
impl TryFromPrimitive for Status
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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