Skip to main content

IRenderGraphLoggerMethods

Trait IRenderGraphLoggerMethods 

Source
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§

Source

fn initialize(self)

Initialize() overload

Source

fn increment_indentation(self, value: impl Into<i32>)

IncrementIndentation(i32) overload

Source

fn decrement_indentation(self, value: impl Into<i32>)

DecrementIndentation(i32) overload

Source

fn log_line( self, format: impl Into<Il2CppString>, args: impl Into<Array<Object>>, )

LogLine(::unity::Il2CppString, ::unity::Array<crate::system::object::Object>) overload

Source

fn get_log(self) -> Il2CppString

GetLog() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IRenderGraphLogger> IRenderGraphLoggerMethods for __T

Available on crate feature unity_engine-experimental-rendering-render_graph_module-rendergraphlogger only.