Struct libpulse_binding::format::Info [] [src]

pub struct Info<'a> {
    pub ptr: &'a mut InfoInternal,
    // some fields omitted
}

This acts as a safe Rust wrapper for the actual C object.

Fields

The actual C object

Methods

impl<'a> Info<'a>
[src]

[src]

Allocates a new Info structure.

Clients must initialise at least the encoding field themselves. Returns None on failure.

[src]

Parse a human-readable string of the form generated by print into an Info structure.

Returns None on failure.

[src]

Utility function to take a ::sample::Spec and generate the corresponding Info.

Note that if you want the server to choose some of the stream parameters, for example the sample rate, so that they match the device parameters, then you shouldn't use this function. In order to allow the server to choose a parameter value, that parameter must be left unspecified in the Info object, and this function always specifies all parameters. An exception is the channel map: if you pass None for the channel map, then the channel map will be left unspecified, allowing the server to choose it.

Returns None on failure.

[src]

Create a new Info from an existing InfoInternal pointer.

[src]

Create a new Info from an existing InfoInternal pointer. This is the 'weak' version, for use in callbacks, which avoids destroying the internal object when dropped.

[src]

Returns whether the Info structure is valid.

[src]

Returns whether the Info structure represents a PCM (i.e. uncompressed data) format.

[src]

Returns whether the format represented by self is a subset of the format represented by with. This means that with must have all the fields that self does, but the reverse need not be true. This is typically expected to be used to check if a stream's format is compatible with a given sink. In such a case, self would be the sink's format and with would be the streams.

[src]

Return a human-readable string representing the given format.

Returns None on error.

[src]

Utility function to generate a ::sample::Spec and ::channelmap::Map corresponding to a given Info.

The conversion for PCM formats is straight-forward. For non-PCM formats, if there is a fixed size-time conversion (i.e. all IEC61937-encapsulated formats), a "fake" sample spec whose size-time conversion corresponds to this format is provided and the channel map argument is ignored. For formats with variable size-time conversion, this function will fail.

[src]

Convenience method to set the encoding attribute.

[src]

Gets the type of property key.

[src]

Gets an integer property.

[src]

Gets an integer range property. On success, returns min-max tuple.

[src]

Gets an integer array property.

Returns None on error.

[src]

Gets a string property.

[src]

Gets a string array property.

[src]

Sets an integer property.

[src]

Sets a property with a list of integer values.

[src]

Sets a property which can have any value in a given integer range.

[src]

Sets a string property.

[src]

Sets a property with a list of string values.

[src]

Convenience method to set the sample format as a property.

Note for PCM: If the sample format is left unspecified in the Info object, then the server will select the stream sample format. In that case the stream sample format will most likely match the device sample format, meaning that sample format conversion will be avoided.

[src]

Convenience method to set the sampling rate as a property.

Note for PCM: If the sample rate is left unspecified in the Info object, then the server will select the stream sample rate. In that case the stream sample rate will most likely match the device sample rate, meaning that sample rate conversion will be avoided.

[src]

Convenience method to set the number of channels as a property.

Note for PCM: If the channel count is left unspecified in the Info object, then the server will select the stream channel count. In that case the stream channel count will most likely match the device channel count, meaning that up/downmixing will be avoided.

[src]

Convenience method to set the channel map as a property.

Note for PCM: If the channel map is left unspecified in the Info object, then the server will select the stream channel map. In that case the stream channel map will most likely match the device channel map, meaning that remixing will be avoided.

Trait Implementations

impl<'a> Drop for Info<'a>
[src]

[src]

Executes the destructor for this type. Read more

impl<'a> Clone for Info<'a>
[src]

[src]

Returns a new Info struct and representing the same format. If this is called on a 'weak' instance, a non-weak object is returned.

1.0.0
[src]

Performs copy-assignment from source. Read more