2025-09-16 21:07:44 +02:00
|
|
|
mod object_trait;
|
|
|
|
|
|
2025-10-01 07:42:16 +02:00
|
|
|
pub mod server;
|
2025-09-16 21:07:44 +02:00
|
|
|
pub mod state_variables;
|
|
|
|
|
pub mod value_ranges;
|
2025-10-01 07:42:16 +02:00
|
|
|
pub mod variable_types;
|
2025-10-01 15:44:52 +02:00
|
|
|
pub mod actions;
|
2025-09-16 21:07:44 +02:00
|
|
|
|
2025-10-01 15:44:52 +02:00
|
|
|
pub use crate::object_trait::{UpnpXml,UpnpObject};
|
2025-09-16 21:07:44 +02:00
|
|
|
|
2025-10-01 15:44:52 +02:00
|
|
|
#[derive(Debug,Clone)]
|
2025-09-16 21:07:44 +02:00
|
|
|
pub struct UpnpObjectType {
|
|
|
|
|
name: String,
|
|
|
|
|
object_type: String,
|
2025-10-01 07:42:16 +02:00
|
|
|
}
|