Struct lldb::SBStream [] [src]

pub struct SBStream {
    pub raw: SBStreamRef,
}

A destination for streaming data output. By default, this is a string stream, but it can be redirected to a file.

Fields

The underlying raw SBStreamRef.

Methods

impl SBStream
[src]

[src]

Construct a new SBStream.

[src]

Construct a new SBStream.

[src]

Construct a new Some(SBStream) or None.

[src]

Check whether or not this is a valid SBStream value.

[src]

If the stream is directed to a file, forget about the file and if the ownership of the file was transferred to this object, close the file. If the stream is backed by a local cache, clear this cache.

[src]

If this stream is not redirected to a file, this retrieves the locally cached data.

[src]

If this stream is not redirected to a file, this retrieves the length of the locally cached data.

[src]

Is this stream empty?

Trait Implementations

impl Debug for SBStream
[src]

[src]

Formats the value using the given formatter.

impl Default for SBStream
[src]

[src]

Returns the "default value" for a type. Read more

impl Drop for SBStream
[src]

[src]

Executes the destructor for this type. Read more