use agent_doc_element::{
ElementAuthority, ElementCompositionRole, ElementDescriptor, ElementRealtimeModel,
ElementSchedulingRole, ElementShape, ElementSource, ElementWritePolicy,
};
pub const DESCRIPTOR: ElementDescriptor = ElementDescriptor {
name: "icebox",
aliases: &[],
source: ElementSource::BuiltIn,
shape: ElementShape::Component,
authority: ElementAuthority::GranularTrackedWork,
write_policy: ElementWritePolicy::GranularOnly,
scheduling_role: ElementSchedulingRole::ParkedWorkSource,
realtime_model: ElementRealtimeModel::TrackedItems,
composition_role: ElementCompositionRole::LocalOnly,
realtime: true,
};
pub fn descriptor() -> ElementDescriptor {
DESCRIPTOR
}