#[non_exhaustive]pub enum RefTarget {
Name(String),
Object(ObjectId),
Raw(String),
}Expand description
Cross-reference target identifier (Wave 12m Phase 2).
Replaces the previous target_name: String field on
[Control::CrossRef] with a type-safe enum that distinguishes the
three observed wire forms in HWP5 %xrf Command strings:
Name(String)— 사용자 지정 책갈피 이름 (Bookmark 전용). 한컴 fixture 의?target1;6;0;0;0;형식에서target1부분.Object(ObjectId)— 한컴 자동 생성 정수 ID (Footnote / Endnote / Caption / Outline). 한컴 fixture 의?#1108165575;3;0;0;0;형식에서#접두사를 떼고 정수로 파싱한 값. 가리키는 타깃(Image/Table/…)의inst_id: Option<ObjectId>와 같은ObjectId를 공유해 링크를 타입 수준에서 보장한다 (ADR-010).Raw(String)— 위 두 형식 어느쪽으로도 파싱이 안 된 wire 값. silent fallback 위조 금지 원칙 (Codex(architect)) — 의미를 모르면 raw 보존.
변환은 smithy-hwp5/src/projection.rs::decode_hwp5_target 의
boundary 함수에서 수행 (Core 는 wire-agnostic).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Name(String)
사용자 지정 책갈피 이름 (Bookmark 전용).
Object(ObjectId)
타깃 객체의 ObjectId (Footnote / Endnote / Caption / Outline).
가리키는 타깃의 inst_id 와 같은 id 를 공유한다 (ADR-010).
Raw(String)
위 형식 어느쪽으로도 정규화되지 않은 raw 값 — fallback 위조 금지.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RefTarget
impl<'de> Deserialize<'de> for RefTarget
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RefTarget
Source§impl JsonSchema for RefTarget
impl JsonSchema for RefTarget
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for RefTarget
Auto Trait Implementations§
impl Freeze for RefTarget
impl RefUnwindSafe for RefTarget
impl Send for RefTarget
impl Sync for RefTarget
impl Unpin for RefTarget
impl UnsafeUnpin for RefTarget
impl UnwindSafe for RefTarget
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.