Revenons sur les devices

This commit is contained in:
2025-10-05 14:35:44 +02:00
parent c9d357d647
commit e5f5686ba1
40 changed files with 11779 additions and 599 deletions

View File

@@ -1,7 +1,7 @@
use xmltree::{Element, XMLNode};
use crate::actions::ActionSet;
use crate::UpnpObject;
use crate::actions::{ActionInstanceSet, ActionSet};
use crate::{UpnpModel, UpnpObject};
impl UpnpObject for ActionSet {
fn to_xml_element(&self) -> Element {
@@ -17,3 +17,7 @@ impl UpnpObject for ActionSet {
}
impl UpnpModel for ActionSet {
type Instance = ActionInstanceSet;
}