Struct jack::Port [] [src]

pub struct Port<PS> { /* fields omitted */ }

An endpoint to interact with JACK data streams, for audio, midi, etc...

The Port struct contains mostly metadata and exposes data as raw pointers. For a better data consumption/production API, see the AudioInPort, AudioOutPort, MidiInPort, and MidiOutPort.

Most JACK functionality is exposed, including the raw pointers, but it should be possible to create a client without the need for calling unsafe Port methods.

Methods

impl Port<AudioIn>
[src]

[src]

Read the received audio data.

impl Port<AudioOut>
[src]

[src]

Get a slice to write audio data to.

impl Port<MidiIn>
[src]

[src]

Get an iterator over midi events.

impl Port<MidiOut>
[src]

[src]

Create a writer that can write midi events to the specified midi port. Calling this function clears the midi buffer.

impl<PS> Port<PS>
[src]

[src]

Returns the spec that was used to create this port.

[src]

Return a copy of port as an unowned port that can still be used for querying information.

[src]

Returns the full name of the port, including the "client_name:" prefix.

[src]

Returns the short name of the port, it excludes the "client_name:" prefix.

[src]

The flags for the port. These are set when the port is registered with its client.

[src]

The port type. JACK's built in types include "32 bit float mono audio" and "8 bit raw midi". Custom types may also be used.

[src]

Number of ports connected to/from &self.

[src]

Returns true if the port is directly connected to a port with the name port_name.

[src]

Get the alias names for self.

Will return up to 2 strings.

[src]

Returns true if monitoring has been requested for self.

[src]

Turn input monitoring for the port on or off.

This only works if the port has the CAN_MONITOR flag set.

[src]

If the CAN_MONITOR flag is set for the port, then input monitoring is turned on if it was off, and turns it off if only one request has been made to turn it on. Otherwise it does nothing.

[src]

Set's the short name of the port. If the full name is longer than PORT_NAME_SIZE, then it will be truncated.

[src]

Sets alias as an alias for self.

May be called at any time. If the alias is longer than PORT_NAME_SIZE, it will be truncated.

After a successful call, and until JACK exists, or the alias is unset, alias may be used as an alternate name for the port.

Ports can have up to two aliases - if both are already set, this function will return an error.

[src]

Remove alias as an alias for port. May be called at any time.

After a successful call, alias can no longer be used as an alternate name for self.

[src]

Create a Port from raw JACK pointers.

This is mostly for use within the jack crate itself.

[src]

Obtain the client pointer that spawned this port.

This is mostly for use within the jack crate itself.

[src]

Obtain the ffi port pointer.

This is mostly for use within the jack crate itself.

[src]

Obtain the buffer that the Port is holding. For standard audio and midi ports, consider using the AudioInPort, AudioOutPort, MidiInPort, or MidiOutPort adapter. For more custom data, consider implementing your own adapter that safely uses the Port::buffer method.

Trait Implementations

impl<PS: PortSpec + Send> Send for Port<PS>
[src]

impl<PS: PortSpec + Sync> Sync for Port<PS>
[src]

impl<PS: PortSpec> Debug for Port<PS>
[src]

[src]

Formats the value using the given formatter.