logos.std.io

Module std · package logos-std

Functions

fneprint

fn eprint(s: &[u8]) -> void

Writes s to standard error, without a trailing newline.

Unbuffered; write errors are silently ignored.

fneprint_string

fn eprint_string(s: &String) -> void

Writes s to standard error, without a trailing newline.

String counterpart of eprint. Unbuffered; write errors are silently ignored.

fneprintln

fn eprintln(s: &[u8]) -> void

Writes s followed by a newline to standard error.

Unbuffered; write errors are silently ignored.

fneprintln_string

fn eprintln_string(s: &String) -> void

Writes s followed by a newline to standard error.

String counterpart of eprintln. Unbuffered; write errors are silently ignored.

fnprint

fn print(s: &[u8]) -> void

Writes s to standard output, without a trailing newline.

Unbuffered; write errors are silently ignored.

fnprintln

fn println(s: &[u8]) -> void

Writes s followed by a newline to standard output.

Unbuffered; write errors are silently ignored.

fnprintln_string

fn println_string(s: &String) -> void

Writes s followed by a newline to standard output.

String counterpart of println. Unbuffered; write errors are silently ignored.