Record

public struct Record
extension Record: Equatable, Hashable
  • Declaration

    Swift

    public var level: Level
  • The target field from the Rust log crate. Usually the Rust module name, however log! calls can manually override the target name.

    Declaration

    Swift

    public var target: String
  • Declaration

    Swift

    public var message: String
  • Declaration

    Swift

    public init(level: Level, 
        /**
         * The target field from the Rust log crate.  Usually the Rust module name, however log! calls can manually override the target name.
         */target: String, message: String)
  • Declaration

    Swift

    public static func == (lhs: Record, rhs: Record) -> Bool
  • Declaration

    Swift

    public func hash(into hasher: inout Hasher)