pub enum AudioCommandResult {
Sent,
Index(usize),
Indices(Vec<usize>),
ThreadClosed,
StorageOverflow,
NoSuchTrack,
}Expand description
Результат выполнения команды. The result of command accomplishing.
Variants§
Sent
Команда отправлена.
A command is sent.
Index(usize)
Indices(Vec<usize>)
ThreadClosed
Аудио поток остановлен.
The audio thread is closed.
StorageOverflow
Хранилище треков переполнено.
The track storage is overflown.
NoSuchTrack
Нет такого трека (в хранилище или плейлисте).
No such track (in the storage or playlist).
Implementations§
Trait Implementations§
Source§impl Clone for AudioCommandResult
impl Clone for AudioCommandResult
Source§fn clone(&self) -> AudioCommandResult
fn clone(&self) -> AudioCommandResult
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 AudioCommandResult
impl Debug for AudioCommandResult
Source§impl PartialEq for AudioCommandResult
impl PartialEq for AudioCommandResult
impl StructuralPartialEq for AudioCommandResult
Auto Trait Implementations§
impl Freeze for AudioCommandResult
impl RefUnwindSafe for AudioCommandResult
impl Send for AudioCommandResult
impl Sync for AudioCommandResult
impl Unpin for AudioCommandResult
impl UnwindSafe for AudioCommandResult
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