pub struct AviUtl2LogWriter;Expand description
[tracing_subscriber::fmt::MakeWriter]を実装する構造体。
AviUtl2のログに書き込みます。
Trait Implementations§
Source§impl Clone for AviUtl2LogWriter
impl Clone for AviUtl2LogWriter
Source§fn clone(&self) -> AviUtl2LogWriter
fn clone(&self) -> AviUtl2LogWriter
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 Debug for AviUtl2LogWriter
impl Debug for AviUtl2LogWriter
Source§impl Default for AviUtl2LogWriter
impl Default for AviUtl2LogWriter
Source§fn default() -> AviUtl2LogWriter
fn default() -> AviUtl2LogWriter
Returns the “default value” for a type. Read more
Source§impl MakeWriter<'_> for AviUtl2LogWriter
impl MakeWriter<'_> for AviUtl2LogWriter
Source§type Writer = LockedInternalWriter
type Writer = LockedInternalWriter
The concrete
io::Write implementation returned by make_writer.Source§fn make_writer(&self) -> Self::Writer
fn make_writer(&self) -> Self::Writer
Auto Trait Implementations§
impl Freeze for AviUtl2LogWriter
impl RefUnwindSafe for AviUtl2LogWriter
impl Send for AviUtl2LogWriter
impl Sync for AviUtl2LogWriter
impl Unpin for AviUtl2LogWriter
impl UnsafeUnpin for AviUtl2LogWriter
impl UnwindSafe for AviUtl2LogWriter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<'a, M> MakeWriterExt<'a> for Mwhere
M: MakeWriter<'a>,
impl<'a, M> MakeWriterExt<'a> for Mwhere
M: MakeWriter<'a>,
§fn with_max_level(self, level: Level) -> WithMaxLevel<Self>where
Self: Sized,
fn with_max_level(self, level: Level) -> WithMaxLevel<Self>where
Self: Sized,
§fn with_min_level(self, level: Level) -> WithMinLevel<Self>where
Self: Sized,
fn with_min_level(self, level: Level) -> WithMinLevel<Self>where
Self: Sized,
§fn with_filter<F>(self, filter: F) -> WithFilter<Self, F>
fn with_filter<F>(self, filter: F) -> WithFilter<Self, F>
§fn or_else<W, B>(self, other: B) -> OrElse<Self, B>
fn or_else<W, B>(self, other: B) -> OrElse<Self, B>
Combines
self with another type implementing [MakeWriter], returning
a new [MakeWriter] that calls other’s make_writer if self’s
make_writer returns OptionalWriter::none. Read more§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().