Skip to main content

FinderOptions

Struct FinderOptions 

Source
pub struct FinderOptions {
    pub show_local_sources: bool,
    pub groups: Option<String>,
    pub extra_ips: Option<String>,
}
Expand description

Configuration for NDI source discovery.

Use the builder pattern to create instances with specific settings.

§Examples

use grafton_ndi::FinderOptions;

// Find all sources including local ones
let finder = FinderOptions::builder()
    .show_local_sources(true)
    .build();

// Find sources in specific groups
let finder = FinderOptions::builder()
    .groups("Public,Studio")
    .build();

// Find sources on specific network segments
let finder = FinderOptions::builder()
    .extra_ips("192.168.1.0/24,10.0.0.0/24")
    .build();

Fields§

§show_local_sources: bool

Whether to include local sources in discovery.

§groups: Option<String>

Comma-separated list of groups to search (e.g., “Public,Private”).

§extra_ips: Option<String>

Additional IP addresses or ranges to search.

Implementations§

Source§

impl FinderOptions

Source

pub fn builder() -> FinderOptionsBuilder

Create a builder for configuring find options

Trait Implementations§

Source§

impl Debug for FinderOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for FinderOptions

Source§

fn default() -> FinderOptions

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.