pub trait RTSPAuthImpl: RTSPAuthImplExt + ObjectImpl + Send + Sync {
    // Provided methods
    fn authenticate(&self, ctx: &RTSPContext) -> bool { ... }
    fn check(&self, ctx: &RTSPContext, check: &GString) -> bool { ... }
    fn generate_authenticate_header(&self, ctx: &RTSPContext) { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§