usecrate::ffi;/// Provides access to the system-wide registry of active Spout senders.
pubstructDirectory;implDirectory{/// Number of currently active senders.
pubfnsender_count()->i32{ffi::spout_sender_count()}/// Names of all currently active senders.
pubfnsenders()->Vec<String>{(0..Self::sender_count()).map(|i|ffi::spout_get_sender(i)).collect()}}