pub trait MultiFileSourceExt: IsA<MultiFileSource> + Sealed + 'static {
    // Provided method
    fn uri(&self) -> Option<GString> { ... }
}
👎Deprecated: Since 1.18
Expand description

Trait containing all MultiFileSource methods.

§Implementors

MultiFileSource

Provided Methods§

source

fn uri(&self) -> Option<GString>

👎Deprecated: Since 1.18

The uri of the file/resource to use. You can set a start index, a stop index and a sequence pattern. The format is multifile://start:stop\`location`-pattern. The pattern uses printf string formating.

Example uris:

multifile:///home/you/image`03d`

multifile://20:50@/home/you/sequence/`04d`

Object Safety§

This trait is not object safe.

Implementors§