pub trait IRenderGraphLoggerMethods: IRenderGraphLogger {
// Provided methods
fn initialize(self) { ... }
fn increment_indentation(self, value: impl Into<i32>) { ... }
fn decrement_indentation(self, value: impl Into<i32>) { ... }
fn log_line(
self,
format: impl Into<Il2CppString>,
args: impl Into<Array<Object>>,
) { ... }
fn get_log(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn initialize(self)
fn initialize(self)
Initialize() overload
Sourcefn increment_indentation(self, value: impl Into<i32>)
fn increment_indentation(self, value: impl Into<i32>)
IncrementIndentation(i32) overload
Sourcefn decrement_indentation(self, value: impl Into<i32>)
fn decrement_indentation(self, value: impl Into<i32>)
DecrementIndentation(i32) overload
Sourcefn log_line(
self,
format: impl Into<Il2CppString>,
args: impl Into<Array<Object>>,
)
fn log_line( self, format: impl Into<Il2CppString>, args: impl Into<Array<Object>>, )
LogLine(::unity::Il2CppString, ::unity::Array<crate::system::object::Object>) overload
Sourcefn get_log(self) -> Il2CppString
fn get_log(self) -> Il2CppString
GetLog() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IRenderGraphLogger> IRenderGraphLoggerMethods for __T
Available on crate feature
unity_engine-experimental-rendering-render_graph_module-rendergraphlogger only.