pub trait BackendTaskReader {
// Required method
fn load_tasks_content(
&self,
change_id: &str,
) -> Result<Option<String>, DomainError>;
}Expand description
Port for backend-backed task reading.
Used by repository adapters to resolve task data from the backend when backend mode is enabled.
Required Methods§
Sourcefn load_tasks_content(
&self,
change_id: &str,
) -> Result<Option<String>, DomainError>
fn load_tasks_content( &self, change_id: &str, ) -> Result<Option<String>, DomainError>
Load tasks content (raw markdown) from the backend for a change.